From: martin f. krafft Date: Tue, 4 Aug 2009 15:14:12 +0000 (+0200) Subject: only flag trailing spaces as errors when not inserting X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/0e5f4f3825a0f5a0a58b386f094f3a45b072d893 only flag trailing spaces as errors when not inserting --- diff --git a/.vimrc b/.vimrc index 27f219e..d9b3236 100644 --- a/.vimrc +++ b/.vimrc @@ -1453,11 +1453,16 @@ autocmd BufNewFile,BufRead /home/madduck/debian/pkg/logcheck/*/rulefiles/linux/* autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"zz" | endif " disable list mode when inserting stuff, otherwise keep it enabled, it's -" useful +" useful (see also setting lcs) augroup listinsert autocmd InsertEnter * set nolist autocmd InsertLeave * set list augroup end +" flag trailing spaces as error only when not inserting +augroup tsperrorinsert + autocmd InsertEnter * match none /\s\+$/ + autocmd InsertLeave * match Error /\s\+$/ +augroup end if &cp | set nocp | endif let s:cpo_save=&cpo @@ -1521,5 +1526,3 @@ source $HOME/.vim/macros/table.vim let g:SuperTabMappingForward = '' let g:SuperTabMappingBackward = '' - -match Error /\s\+$/