]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: split verbatim into verbatim and list mapping
authorSimon Ruderich <simon@ruderich.org>
Tue, 29 Apr 2014 14:30:29 +0000 (16:30 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 29 Apr 2014 14:30:29 +0000 (16:30 +0200)
vimrc

diff --git a/vimrc b/vimrc
index 8b394d0689aed7e53c3b49680a03683eaf551858..64a622595dc9da1bc5bdd76f813e044423b05735 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -622,9 +622,11 @@ if has('eval')
     nnoremap <silent> <Leader>t :call <SID>UseTabs()<CR>
 endif
 " Enable "verbatim" mode. Used to view files with long lines or without syntax
-" coloring.
-nnoremap <silent> <Leader>v :set nolist nowrap nospell synmaxcol=0<CR>
+" coloring. 'list' is not changed, see next mapping.
+nnoremap <silent> <Leader>v :setlocal nowrap nospell synmaxcol=0<CR>
                           \ :2match<CR>
+" Toggle 'list'.
+nnoremap <silent> <Leader>l :set invlist<CR>
 
 " Make last active window the only window. Similar to <C-W> o.
 nnoremap <C-W>O <C-W>p<C-W>o