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?

link|improve this question

this doesn't concern python alone – hop Dec 11 '08 at 9:47
feedback

6 Answers

I found the answer here.

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

autocmd BufWritePre *.py :%s/\s\+$//e
link|improve this answer
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 '09 at 14:06
This changes cursor position on each save. Is is possible to avoid it? – stepancheg Oct 24 '09 at 15:59
OK, I've found, answer is below. – stepancheg Oct 24 '09 at 16:11
Since this is the de facto answer for this question maybe it should be updated to maintain cursor position. – Edu Felipe May 4 '11 at 14:26
show 2 more comments
feedback

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|improve this answer
Handy! I like it. :) – Jonathan Dec 10 '08 at 14:41
3  
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 '09 at 14:06
This was a really good find. Thanks for this! – mawaldne Jun 7 '11 at 19:30
Excellent - it's the perfect middle ground between automatically removing trailing whitespace (even when I may not be aware of it, or when it's someone else's code that I'm just happening to work in the same file with), to not doing anything about it. Thanks. – Daniel Hershcovich Jun 22 '11 at 7:13
show 1 more comment
feedback

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 FileType c,cpp,java,php,ruby,python autocmd BufWritePre <buffer> :call <SID>StripTrailingWhitespaces()
link|improve this answer
works for me. Thanks! – Jonathan Hartley Mar 14 '11 at 17:56
3  
You could better your function by also saving the last search and restoring it. let _s=@/ let @/=_s – xApple Jun 21 '11 at 14:58
see too the keepjumps option – user107745 Jun 29 '11 at 19:23
Thank you...this is awesome. – somethingkindawierd Aug 15 '11 at 22:15
For other noobs like me this is how you limit the files the function is called on: – Jason May 17 at 22:28
feedback

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|improve this answer
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 '09 at 20:43
I think this beats the alternative of listing every single file type that you might work on, no? I work on rb, php, cs, html, sass, css, js, coffee, xml, xslt, pl, etc, etc, etc... Is there a happy medium? – Derek Jun 18 '11 at 1:27
1  
Unless you're writing to binary files in vim this probably won't ever be a issue. – gregf Jun 20 '11 at 21:47
feedback

Here's a way to filter by more than one FileType.

autocmd FileType c,cpp,python,ruby,java autocmd BufWritePre <buffer> :%s/\s\+$//e
link|improve this answer
feedback

Copied and pasted from http://blog.kamil.dworakowski.name/2009/09/unobtrusive-highlighting-of-trailing.html

This has the advantage of not highlighting each space you type at the end of the line, only when you open a file or leave insert mode. Very neat.

highlight ExtraWhitespace ctermbg=red guibg=red
au ColorScheme * highlight ExtraWhitespace guibg=red
au BufEnter * match ExtraWhitespace /\s\+$/
au InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
au InsertLeave * match ExtraWhiteSpace /\s\+$/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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