Vim/Neovim
Visual Mode Commands
Master Vim's visual mode for text selection. Learn character, line, and block selection modes, and how to operate on visual selections efficiently.
8 commands
Pro Tips
Use 'v' for character selection, 'V' for line selection, and Ctrl-v for block (column) selection.
After selecting, use operators like 'd' (delete), 'y' (yank), 'c' (change), '>' (indent), or 'u'/'U' (case).
In visual block mode, use 'I' or 'A' to insert at the start or end of each line in the selection.