aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-01-03 02:49:54 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-01-03 02:49:54 +1300
commit4797401f2ac5d2256578b43b6296662a7a3c22c9 (patch)
treee15108ea73fee7651c8721748c3dbbbb4c93eacd
parentWrap a long comment line (diff)
downloaddotfiles-4797401f2ac5d2256578b43b6296662a7a3c22c9.tar.gz
dotfiles-4797401f2ac5d2256578b43b6296662a7a3c22c9.zip
Correct unmaps for changed mail importance maps
-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 5a2f544f..738f17ec 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -41,13 +41,13 @@ endif
" Flag messages as important/unimportant
nnoremap <buffer> <LocalLeader>ih
\ :<C-U>SetImportance high<CR>
-let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>h'
+let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>ih'
nnoremap <buffer> <LocalLeader>il
\ :<C-U>SetImportance low<CR>
-let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>l'
+let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>il'
nnoremap <buffer> <LocalLeader>in
\ :<C-U>SetImportance normal<CR>
-let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>n'
+let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>in'
" Quote operator
nnoremap <buffer> <expr> <LocalLeader>q