Posted by: arun on: January 3, 2009
Well you guessed it right, the “global” command (or :g in command mode) will let you select lines that match a particular pattern globally in the file and lets you operate on the selected text. The :v operates similar to grep -v which selects all texts which do not match the pattern.
Syntax: :g/pattern/command where pattern [...]
Posted by: arun on: March 15, 2008
Vimpress is a script for VIM which allows posting to wordpress blogs from
the best $EDITOR
For more information, visit the project page :
http://www.friggeri.net/projets/vimpress
Also checkout :
http://linuxtidbits.wordpress.com/2008/02/29/publishing-a-blog-in-vim-with-vimpress/
Test stuff here
underlinebolditalic
Ciao
3 should-use vim plugins
Posted by: arun on: September 10, 2008
The first two are very useful, if you kill bugs for a living (read debugging freak).
NERDCommenter
‘NERDs use real editors (VIM Flame flame…) and Comment their code’. This plugin helps comment code in almost all languages you program in. The way: select ‘n’ lines in visual mode(or punch in a number in normal mode), use ‘,cc’ [...]