[Python-checkins] r59598 - python/trunk/Misc/Vim/vimrc

brett.cannon python-checkins at python.org
Tue Dec 25 00:43:30 CET 2007


Author: brett.cannon
Date: Tue Dec 25 00:43:30 2007
New Revision: 59598

Modified:
   python/trunk/Misc/Vim/vimrc
Log:
Make trailing whitespace explicit (including when it is an all-whitespace
line).


Modified: python/trunk/Misc/Vim/vimrc
==============================================================================
--- python/trunk/Misc/Vim/vimrc	(original)
+++ python/trunk/Misc/Vim/vimrc	Tue Dec 25 00:43:30 2007
@@ -42,8 +42,10 @@
 " Use the below highlight group when displaying bad whitespace is desired
 highlight BadWhitespace ctermbg=red guibg=red
 
-" Display tabs at the beginning of a line in Python mode as bad
+" Display tabs at the beginning of a line in Python mode as bad.
 au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
+" Make trailing whitespace be flagged as bad.
+au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/
 
 " Wrap text after a certain number of characters
 " Python: 79 
@@ -85,12 +87,3 @@
 " Keep indentation level from previous line: ``set autoindent``
 
 " Folding based on indentation: ``set foldmethod=indent``
-
-" Make trailing whitespace explicit (left off since this will automatically
-" insert the highlight or characters *as you type*, which can get annoying):
-"``match BadWhitespace /\s\+$/``
-"
-" or, for a non-colored, character-based solution:
-"
-"``set list listchars=trail:-``
-


More information about the Python-checkins mailing list