aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/mail.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-15 16:42:06 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-15 16:42:06 +1200
commitdabe814aa385f489db562d78032d404b67f4cbb9 (patch)
tree1bce8043faffa5d64bc56fbafd6d0310bac166c5 /vim/after/ftplugin/mail.vim
parentUpdate plugins (diff)
downloaddotfiles-dabe814aa385f489db562d78032d404b67f4cbb9.tar.gz
dotfiles-dabe814aa385f489db562d78032d404b67f4cbb9.zip
Add missing <buffer> to mail quote unmaps
Diffstat (limited to 'vim/after/ftplugin/mail.vim')
-rw-r--r--vim/after/ftplugin/mail.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index 0867311a..3e3a08c5 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -24,6 +24,6 @@ endif
nnoremap <buffer> <expr> <LocalLeader>q quote#Quote()
nnoremap <buffer> <expr> <LocalLeader>qq quote#Quote().'_'
xnoremap <buffer> <expr> <LocalLeader>q quote#Quote()
-let b:undo_ftplugin .= '|nunmap <LocalLeader>q'
- \ . '|nunmap <LocalLeader>qq'
- \ . '|xunmap <LocalLeader>q'
+let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>q'
+ \ . '|nunmap <buffer> <LocalLeader>qq'
+ \ . '|xunmap <buffer> <LocalLeader>q'