aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/mail.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-29 23:29:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-29 23:29:09 +1300
commit5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a (patch)
treec8cac5ff8f52c26411c8a49239ca6711555e19e8 /vim/after/ftplugin/mail.vim
parentRemove boilerplate after/ftplugin load guards (diff)
downloaddotfiles-5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a.tar.gz
dotfiles-5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a.zip
Remove double-key mapping shortcuts
I never use these anyway; I'm firmly in the habit of using underscores to represent the current line these days.
Diffstat (limited to 'vim/after/ftplugin/mail.vim')
-rw-r--r--vim/after/ftplugin/mail.vim4
1 files changed, 0 insertions, 4 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index e8b64164..74ec1699 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -54,8 +54,6 @@ let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>l'
" Quote operator
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 <buffer> <LocalLeader>q'
@@ -65,8 +63,6 @@ let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>q'
" Quote operator with reformatting
nnoremap <buffer> <expr> <LocalLeader>Q
\ quote#QuoteReformat()
-nnoremap <buffer> <expr> <LocalLeader>QQ
- \ quote#QuoteReformat().'_'
xnoremap <buffer> <expr> <LocalLeader>Q
\ quote#QuoteReformat()
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>Q'