i a I A o OThese are the highest-frequency insert entry points in Vim and Neovim.
Core modal editing concepts, motions, and movement commands for everyday editing.
Move between normal, insert, visual, and command-line modes quickly.
i a I A o OThese are the highest-frequency insert entry points in Vim and Neovim.
<Esc>Normal mode is the control center for motions, operators, and commands.
:The `:` prompt is used for Ex commands, ranges, help, file actions, and substitutions.
Move precisely without reaching for arrow keys.
h j k lThese are the foundational motion keys in normal mode.
w b eUse `w` forward, `b` backward, and `e` to the end of the current or next word.
0 ^ $`0` goes to column 1, `^` to the first non-blank, and `$` to line end.
gg G`gg` jumps to the first line and `G` to the last.
%Excellent for code blocks and nested structures.
Move through larger files and keep context visible.
<C-d> <C-u>`<C-d>` scrolls down half a page; `<C-u>` scrolls up half a page.
zzUseful after searches, jumps, or diagnostics navigation.
zt zb`zt` puts the current line at the top; `zb` at the bottom.