- Does it cover Neovim?
- Mostly — Vim and Neovim share 95% of commands. Neovim-specific (terminal, Lua config) noted separately.
- What's the mental model?
- Composable commands: {verb}{count}{noun}. Covered clearly — once you grasp the grammar, custom commands compose naturally.
- Essential motions?
- w, b, e, f, t, %, *, n, N, G, gg. Plus how they combine with operators (d, c, y, v).
- How do I quit?
- :q (quit), :q! (force quit), :wq (write and quit), :wqa (write all and quit all). The famous 'how to exit Vim' Stack Overflow moment.