> * John  <[EMAIL PROTECTED]> writes:
> 
> > 1. Using vim, how could I replace tabs with spaces ?
> 
%s/ /<tab>/g

Translates to
%s substitute all lines
/ / this is a single space

/<tab>/  the tab is a real tab (jst hit the tab key)

/g global, without g it will just sub one space per line.

Have fun

-hojo

Reply via email to