Quantcast
Channel: Comfortable PHP editing with VIM -2-
Viewing all articles
Browse latest Browse all 22

Dennis at Wed, 24 Nov 2004 12:02:16 +0100

$
0
0
Another great feature in vim, is the ability to work with several files at the same time. Add this to .vimrc: " Allow editing of several files without having to save the current one, before moving to another set hidden " map F12 to close a buffer map :db^M " Move to next buffer map ^N :bn^M " Move to previous buffer map ^B :bp^M " List open buffers map ^L :ls^M Then use the 'e' command like: e: text.php This will open text.php in a seperat buffer, and with CTRL-n or CTRL-p you can navigate between them.

Viewing all articles
Browse latest Browse all 22

Trending Articles