Chapter 8 Flashcards
What ^ does
Go to the first character on the line
What 0 does
Go to the first character of the line
What $ does
Go to the end of the line
What w does
Move one word forward(word means a word + space after)
What b does
Move back to the first char of the previous word
What e does
Move to the end of the current word
What ge does
Move to the end of the previous word ignoring spaces
What m{a-zA-Z} does
Mark a position in buffer for {a-z} and persistent between files {A-Z}
What ‘{mark} does
Move to the line with a {mark} and position cursor on the first non-whitespace char.
What `{mark} does
Move the cursor to the particular {mark}
What `` does
Position cursor before last jump in the current file
What `. does
Position cursor before last change in the current file
What `^ does
Position cursor of the last insertion in the current file
What [ /
] does
Position cursor to the beginning/ending of the last yank in the current file
What ` does
Position cursor to the beginning/ending of the last visual in the current file