blukat29 / vimedu

Learn basics of vim interactively.
MIT License
1 stars 1 forks source link

Curriculum #6

Open blukat29 opened 10 years ago

blukat29 commented 10 years ago
blukat29 commented 10 years ago

Inspired by http://whileimautomaton.net/2008/11/vimm3/operator "How Vim user grows"

  1. Write and exit. The most difficult hurdle for a newbie. Just teach :w and :q, and how to move between levels.
  2. Arrow key and Insert mode. learns i and Esc key.
  3. Visual mode and basic operators. v Esc, then arrow keys to move, then d y c p > <.
  4. Clever motions. w b 0 $ gg G f+char H M L.
  5. Text objects. aw i( i" a' Not working in visual mode in CodeMirror fixed.
  6. Operators with motions. dw ci( vf/ ...
  7. Repeats. 5yy 3p d2w
  8. Search and replace /regex :%s/from/to/. Regex options /g /i