Created
February 24, 2019 21:29
-
-
Save nikkatsa/16d24a3987133ae8f6486799bf93d08a to your computer and use it in GitHub Desktop.
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
i = Switch to insert mode and start inserting characters at the cursor's position | |
a = Switch to insert mode and start appending characters from the next cursor position | |
x = Delete the character under the cursor | |
dd = Delete the entire line | |
o = Insert and empty line and start appending on it | |
cw = Delete the word under cursor and start appending new character. This operation is useful when the user wants to change a word | |
v = Enter the visual mode, in order to select characters | |
V = Enter the visual mode and select the entire row |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment