Created
October 26, 2013 02:14
-
-
Save jasonngpt/7164544 to your computer and use it in GitHub Desktop.
Vim F key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you press the "f" key in normal mode, Vim will move the cursor forward to whatever character you input after "f" is pressed. As an example, consider the following line: | |
| a quick brown fox | |
| If the cursor was at the absolute beginning of the line, and you pressed "fb" in normal mode, Vim would move the cursor so that it was positioned over the "b" in "brown". | |
| If you press "F", Vim will move the cursor backwards instead of forward. Given the previous sentence, if pressed "Fq", and the cursor was at the end of the line, it would move to the "q" in "quick". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
fcto jump directly from 'a' to 'c'.fkhif you jump past 'c' to 'k'.hmoves the cursor back by a single character, or<n>hto jump backwards by n characters.