> For the complete documentation index, see [llms.txt](https://ploegert.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ploegert.gitbook.io/til/tools/vim/end-of-the-word.md).

# 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.
