vote up 17 vote down star
10

I am getting 'trailing whitespace' errors trying to commit some files in git.

I want to remove these trailing whitespace characters automatically right before I save python files.

Can you configure vim to do this? If so, how?

flag

80% accept rate
this doesn't concern python alone – hop Dec 11 '08 at 9:47

4 Answers

vote up 0 vote down

Compilation of above plus saving cursor position:

fun! <SID>StripTrailingWhitespaces()
    let l = line(".")
    let c = col(".")
    %s/\s\+$//e
    call cursor(l, c)
endfun

autocmd BufWritePre *.h :call <SID>StripTrailingWhitespaces()
link|flag
vote up 2 vote down

This is how I'm doing it. I can't remember where I stole it from tbh.

autocmd BufWritePre * :call <SID>StripWhite()
fun! <SID>StripWhite()
    %s/[ \t]\+$//ge
    %s!^\( \+\)\t!\=StrRepeat("\t", 1 + strlen(submatch(1)) / 8)!ge
endfun
link|flag
Hum, that's pretty dangerous to do it on "*" if you eventually open up binary files, they may end up in a pretty bad shape. – mat Dec 18 '08 at 20:45
Yeah probably not the smartest, then again I don't use vim for a hex editor either. That won't execute unless you save. – gregf Apr 1 at 20:43
vote up 17 vote down

I also usually have a :

match Todo /\s\+$/

in my .vimrc file, so that end of line whitespace are hilighted.

Todo being a syntax hilighting group-name that is used for hilighting keywords like TODO, FIXME or XXX. It has an annoyingly ugly yellowish background color, and I find it's the best to hilight things you don't want in your code :-)

link|flag
Handy! I like it. :) – Jonathan Dec 10 '08 at 14:41
Or you can set list and set listchars+=trail:. – Oli Dec 11 '08 at 7:17
Like my namesake, I like this. Thanks. – Jonathan Leffler Jan 15 at 14:06
vote up 19 vote down

I found the answer here (http://vim.wikia.com/wiki/Remove_unwanted_spaces#Automatically_removing_all_trailing_whitespace).

Adding the following to my .vimrc file did the trick.

autocmd BufWritePre *.py :%s/\s\+$//e
link|flag
Is there any easy way to tell stackoverflow that the // is not really a comment here? – Mikeage Dec 11 '08 at 10:03
Interesting! Trailing white space is a battle at work. I loathe it, others don't understand why. We use as much vi as vim (I use vim; they don't because they'd have to install it). I have a program I call stb to Strip Trailing Blanks and I use that as a filter; works in vi too. This is better. – Jonathan Leffler Jan 15 at 14:06
This changes cursor position on each save. Is is possible to avoid it? – stepancheg Oct 24 at 15:59
OK, I've found, answer is below. – stepancheg Oct 24 at 16:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.