Gary Kline wrote:

... So my question was how-to change embedded tabs to spaces.

This will change every tab to a single space:

Search for: \t
Replace with: (type a single space)
Regular expressions: ON

To accomplish the same in vi:

:1,$s/\t/ /g

<Joe

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to