aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/gitcommit.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-16 13:46:10 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-16 13:46:10 +1200
commit009b0efd84118d4ce3ffcf2fdc400477326f4f30 (patch)
tree63d5affd378d7a6ba646d1bb1fdd78555f3796e8 /vim/after/ftplugin/gitcommit.vim
parentDon't default <Plug>(InsertCancel) (diff)
downloaddotfiles-009b0efd84118d4ce3ffcf2fdc400477326f4f30.tar.gz
dotfiles-009b0efd84118d4ce3ffcf2fdc400477326f4f30.zip
Add reformatting analogue to quote mappings
Diffstat (limited to 'vim/after/ftplugin/gitcommit.vim')
-rw-r--r--vim/after/ftplugin/gitcommit.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
index 7fab5a92..5699188d 100644
--- a/vim/after/ftplugin/gitcommit.vim
+++ b/vim/after/ftplugin/gitcommit.vim
@@ -27,6 +27,12 @@ endif
nnoremap <buffer> <expr> <LocalLeader>q quote#Quote()
nnoremap <buffer> <expr> <LocalLeader>qq quote#Quote().'_'
xnoremap <buffer> <expr> <LocalLeader>q quote#Quote()
+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'
\ . '|nunmap <buffer> <LocalLeader>qq'
\ . '|xunmap <buffer> <LocalLeader>q'
+ \ . '|nunmap <buffer> <LocalLeader>Q'
+ \ . '|nunmap <buffer> <LocalLeader>QQ'
+ \ . '|xunmap <buffer> <LocalLeader>Q'