1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-06 08:38:01 +00:00

Add End Of The Word as a vim til.

This commit is contained in:
jbranchaud
2015-06-09 08:30:29 -05:00
parent a2f47c339d
commit 104d5ef082
2 changed files with 10 additions and 0 deletions

9
vim/end-of-the-word.md Normal file
View File

@@ -0,0 +1,9 @@
# End Of The Word
Word-based movement can serve as a quick way to get around locally in Vim. I
most often use `w` and `b` for this kind of movement. While `w` and `b` move
me to the beginning of the next and previous word, respectively, I find that
sometimes it would be more convenient if I were at the end of a word.
The `e` and `ge` commands serve this purpose well. `e` will move me to the
end of the next word and `ge` will move me to the end of the previous word.