e VIM Command
How to use e Command in Linux VIM editor?
Explanation
This command is used to move the cursor to the last letter of the next word. Here we can use numeric prefix to move cursor after multiple words together.
Usage:
e
Example:
- Open the file test.txt
$vim test.txt

- Move the cursor to end of word using the e command
Press e

- To move the cursor to end of the second word from the current position.
Press 2e
