In vim's command mode, the g prefix is used for a number of commands. Some commands go somewhere in the document, but other commands deal with file encodings and swapping upper/lower case letters.
ga- show character encoding10g- go to line 10- gg - go to line 1
- gH - start Select line mode
- gr{char} - virtual replace N chars with {char}
What is the missing connection between all these commands?
gandzextend the normal set of commands. – Benoit Oct 3 '11 at 12:14gandzas @Benoit: «g{C}was defined because it is a command that is commonly needed, but other characters are already binded». Manyg*have a mnemonicgo to/global, some not. Unlikeg*z*commands that are not related to folds are harder to remember for me. I even personally in one of my plugins defined a set ofgdmappings that can be memorized asglobal diff: «see all changes made by given revision». And near had a set of «go to» ones:gu- «go to user» - «view changes made by user» and so on. – ZyX Oct 3 '11 at 20:58