- increase number under cursor:
ctrl+a
- decrease number under cursor:
ctrl+x
- replace one word with another: select first word, e.g.
vi"
; select second wordvi"
and pastep
- search from within vim, don't jump to first match: vimgrep /render_show/gj **/*.rb
- resize horizontal split:
ctrl+w -
/ctrl+w +
- resize horizontal split to maximum:
ctrl+w _
- make horizontal and vertical splits equally big:
ctrl+w =
- resize vertical split:
ctrl+w <
/ctrl+w >