vim
Contents
move
- gg/G: jump to top of content
- 0/$: the begin of the line
- 5gg: jump to line 5
edit
- i/a: insert befor(after)current cursor position
- o,O: insert below(above) current cursor
- r/R: replace current character/ repace until esc
- s/S: delte current character/line and start insert
- [5]dd
- dG: delte from current line to last
- :1,4d,delet
- D: delte to the end of line
undo, redo
undo: u redo: ctrl + r
mode
- insert: i
- normal : excute command; switch into other mode;
- p(P): paste the character after(before) current cursor;
- visual: select characters;
- v: select mutiple characters
- V: select mutiple lines;