aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-04 09:21:56 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-04 09:21:56 +1200
commitca5fb3130dfda15de2b1268af6150724423f5361 (patch)
treedf4f501b3b90a51597c4eaa7124624c6c32a980b /vim
parentPrevent Vim spell checking of code blocks in mail (diff)
parentBump VERSION (diff)
downloaddotfiles-ca5fb3130dfda15de2b1268af6150724423f5361.tar.gz
dotfiles-ca5fb3130dfda15de2b1268af6150724423f5361.zip
Merge branch 'hotfix/v9.16.2' into develop
* hotfix/v9.16.2: Add missing buffer-local flag to mail maps
Diffstat (limited to 'vim')
-rw-r--r--vim/after/ftplugin/mail.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index ed52edf0..1ed5a71f 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -66,9 +66,9 @@ let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>Q'
\ . '|xunmap <buffer> <LocalLeader>Q'
" Mappings for enforcing strict quoting
-nnoremap <LocalLeader>s
+nnoremap <buffer> <LocalLeader>s
\ :StrictQuote<CR>
-xnoremap <LocalLeader>s
+xnoremap <buffer> <LocalLeader>s
\ :StrictQuote<CR>
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>s'
\ . '|xunmap <buffer> <LocalLeader>s'