diff options
author | Hugues Hiegel <hugues@hiegel.fr> | 2009-10-27 16:02:24 +0100 |
---|---|---|
committer | Hugues Hiegel <hugues@hiegel.fr> | 2009-10-27 16:02:24 +0100 |
commit | 109fbae3bd3e3fab2d6d221b440348325798a7d0 (patch) | |
tree | 368a52509d77044eb4ae6d91f6267a8a9a89aaa6 /vimrc | |
parent | 40f4741937a1d2db41077606462f217d7fef6fd5 (diff) |
[Vim] shows annoying spaces
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -88,6 +88,10 @@ autocmd BufRead * color red "autocmd BufRead *.php color pablo "autocmd BufRead /tmp/mutt-*[0-9] color elflord +" F*cking trailing whitespaces +autocmd BufRead * highlight ExtraWhitespace ctermbg=red guibg=red +autocmd BufRead * match ExtraWhitespace /\s\+$\| \+\ze\t\| / + set title set autoindent set diffopt=iwhite,filler @@ -110,6 +114,7 @@ map <ESC>Q v/$\n\n<CR>J:.!fmt -tcw78<CR>:noh<CR> map <ESC>u :noh<CR> + " Function " Erase_Sig_but_Your() " @@ -173,3 +178,4 @@ autocmd BufRead /tmp/mutt-*[0-9] map <ESC>w ggv/^-- $<CR><UP>:!par rTbgqRe 'B=., autocmd BufRead /tmp/mutt-*[0-9] set textwidth=74 autocmd BufRead /tmp/mutt-*[0-9] execute Erase_Sig_but_Your() autocmd BufRead /tmp/mutt-*[0-9] :normal ,n + |