aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/gitcommit.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-14 20:52:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-14 20:52:49 +1200
commit720b6971850e636912737fe9bcb72fb0d566f344 (patch)
tree4311fd0fbb3a936021de33172804e16bd72816ef /vim/after/ftplugin/gitcommit.vim
parentMerge branch 'release/v1.29.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-1.30.0.tar.gz (sig)
dotfiles-1.30.0.zip
Merge branch 'release/v1.30.0'v1.30.0
* release/v1.30.0: Bump VERSION Revert "Remove :nohlsearch from vimrc" Spin off vimrc_reload_filetype.vim Add mail quote maps for gitcommit and markdown Expand and comment quoting functions Change mail quoting to generic autoload function Remove bell settings from .gvimrc
Diffstat (limited to 'vim/after/ftplugin/gitcommit.vim')
-rw-r--r--vim/after/ftplugin/gitcommit.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
index 8e365d98..4f57a407 100644
--- a/vim/after/ftplugin/gitcommit.vim
+++ b/vim/after/ftplugin/gitcommit.vim
@@ -7,3 +7,16 @@ endif
setlocal comments+=n:>
setlocal formatoptions+=coqr
let b:undo_ftplugin .= '|setlocal comments< formatoptions<'
+
+" Stop here if the user doesn't want ftplugin mappings
+if exists('g:no_plugin_maps') || exists('g:no_gitcommit_maps')
+ finish
+endif
+
+" Mail quote mappings
+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'