Privacy Policy
© 2025 linux101.dev

Vim: Editing in Normal Mode

While Normal Mode is primarily for navigation, it also contains powerful commands for editing text efficiently.

CommandDescription
xDelete the character under the cursor.
ddDelete the current line.
yyYank (copy) the current line.
pPaste the yanked or deleted text after the cursor.
uUndo the last action.
Ctrl + rRedo the last undone action.