aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-01 23:49:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-01 23:49:54 +1200
commit07288c6255de470a5539d6f7b45c992f450c3d90 (patch)
tree99bd09738d7041f3a0eb7e1e06ff8cc1197b3e98 /vim/vimrc
parentAdd \m, \M, \v, and \V mappings (diff)
downloaddotfiles-07288c6255de470a5539d6f7b45c992f450c3d90.tar.gz
dotfiles-07288c6255de470a5539d6f7b45c992f450c3d90.zip
Remove unnecessary value report from \u \z maps
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index f322c191..5cc62439 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -252,7 +252,7 @@ nnoremap <Bslash>s :<C-U>setlocal spell! spell?<CR>
" \t shows current filetype
nnoremap <Bslash>t :<C-U>set filetype?<CR>
" \u sets US English spelling (compare \z)
-nnoremap <Bslash>u :<C-U>setlocal spelllang=en_us spelllang?<CR>
+nnoremap <Bslash>u :<C-U>setlocal spelllang=en_us<CR>
" \v shows all global variables
nnoremap <Bslash>v :<C-U>let g: v:<CR>
" \V shows all local variables
@@ -262,7 +262,7 @@ nnoremap <Bslash>w :<C-U>set wrap! wrap?<CR>
" \x strips trailing whitespace via a custom plugin
nmap <Leader>x <Plug>StripTrailingWhitespace
" \z sets NZ English spelling (compare \u)
-nnoremap <Bslash>z :<C-U>setlocal spelllang=en_nz spelllang?<CR>
+nnoremap <Bslash>z :<C-U>setlocal spelllang=en_nz<CR>
" Custom digraphs
if has('digraphs')