I don't always want to hide tabs or ts

This commit is contained in:
Hunter Haugen 2010-06-23 15:11:58 -07:00
parent 918f1e5696
commit e1bb05221a

3
.vimrc
View file

@ -261,7 +261,8 @@ else
set list listchars=tab:>-,trail:.,extends:>
endif
endif
map <silent> <F9> :set nolist listchars<CR>:set noet<CR>:set sw=8<CR>:set ts=8<CR>
map <silent> <F9> :set noet<CR>:set sw=8<CR>:set ts=8<CR>
map <silent> <S-F9> :set nolist listchars<CR>:set noet<CR>:set sw=8<CR>:set ts=8<CR>
" Show lines longer than 80 characters
"au BufWinEnter * let w:m1=matchadd('Search', '\%<81v.\%>77v', -1)