Vim/Navigation
From Debuntu
< Vim
Words
In escape mode:
| Command | Action |
|---|---|
| [count]w | move [count] words forward exclusive |
| [count]W | move [count] WORDS forward exclusive |
| [count]e | forward to end of the word [count] |
| [count]E | forward to the end of WORD [count] |
| [count]b | move [count] workds backward exclusive |
| [count]B | move [count] WORDS backward exclusive |
| [count]ge | backward to end of the word [count] |
| [count]gE | backward to the end of WORD [count] |
Where a word consist of a sequence of letters, digits and underscores, or a sequence of other non-blank characters, separated with white space.
A WORD consists of a sequence of non-blank characters, separated with white space. An empty line is also considered to be a WORD.