VIM Editor Keyboard Shortcuts
Vim has two types of modes for smooth operations inside it
Insert mode - to make changes inside a file currently opened in the editor Esc -> i
Visual mode - to use shortcuts and various operations in the editor Esc -> v
Command mode - to use various commandsfor fast document processing Esc
Shortcuts keys
Delete entire word under cursor in COMMAND MODE: [cm] diw d: delete i: internal/inner w: word
Change entire word under cursor and go to INSERT MODE: [cm] ciw c: change i: internal/inner w: word
Delete word previous to the cursor in INSERT MODE: Ctrl + w
Move to the top of the document in VISUAL MODE: Esc -> gg
Move to end of the document in VISUAL MODE: Esc -> G
Last updated