Vim Commands
I use vim for programming for about a year now. I feel very comfortable using it. Vim is such a complex tool that you need to constantly improve your skills in order to master it.
So here are the next commands that I would like to use on a regular basis:
* find next occurence # find previous :g /regexp/command ci" change until " % jump to () :! execute shell command :reg show registers "(number)p put register :ls         -- List buffers :ls!        -- List ALL buffers :bn         -- Open next buffer :bp         -- Open previous buffer :bf         -- Open first Buffer :bl         -- Open last buffer :b #        -- Open buffer :bd #       -- Close buffer (# optional) :bad <name> -- New buffer named <name> :retab. It lets you convert from tabs to spaces and from spaces to tabs ZZ save and quit














