zhuang@linux:~/reading/practical-vim/02-normal-mode/$ less

Practical Vim / chapter 02

Normal Mode

$ grep tags 02-normal-mode.md

This post extracts some knowledge from Chapter 2 – Normal Mode.

Make each “undoable chunk” correspond to a thought.

VimGolf – Real Vim ninjas count every keystroke - do you?

daw – delete a word <C-a> and <C-x> perform addition and subtration on numbers

Operator + Motion = Action

Vim’s Operator Commands:

TriggerEffect
ddelete
cchange
yyank
g~toggle case
gulowercase
gUuppercase
>indent right
<indent left
=auto indent
!Filter {motion} lines through an external program

zhuang@linux:~/reading/practical-vim/02-normal-mode/$ comments