James Vega wrote:
On Tue, May 30, 2006 at 09:16:38AM -0400, James Vega wrote:
On Tue, May 30, 2006 at 09:04:15AM -0400, Robert Hicks wrote:
I currently have this:
autocmd BufEnter * :%s/[ \t\r]\+$//e " get rid of the pesky ^M
However, it gives me an error I have to "enter" through when I open a
readonly file.
Something along the lines of
autocmd BufEnter * :if &ro | %s/[ \t\r]\+$//e | endif
That should actually be
autocmd BufEnter * :if !&ro | %s/[ \t\r]\+$//e | endif
since you want the replacement performed only when the buffer is not
readonly.
James
I actually caught that. :-)
:Robert