Vim
Introduction
Vim is a 'modal' editor i.e it's got modesModes:
- Command : Default, press esc to reach here
- Insert : Press i
- Write : Press w
- Quit : Press q
Commands
- Delete a line[Command mode] :DD
- Delete 3 lines [Commmand mode] :3DD
- Undo [Command mode] :U
- Redo [Command mode] :Ctrl+R
- Searching [Command mode] :/<text>
- Search and Replace All (greedy) :%s/<search text>/<replace - text>/g
Links
- Vim Cheetsheet
- SuperTab plugin
- Improving Vim Speed
- Ctabs plugin
- Macros vimcast
- Vim Creep - a story of vim user