diff options
author | Teddy Wing | 2017-04-28 00:52:33 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-28 00:52:33 +0200 |
commit | 41b7976991b46915ad5cd6b8a25aa92ea5334db0 (patch) | |
tree | 9361b75113beafce7a7aba2cc0806cec54e69572 | |
parent | e70d92c495001c0af0037b9fadbeec170d2c318f (diff) | |
download | vim-gitcha-41b7976991b46915ad5cd6b8a25aa92ea5334db0.tar.bz2 |
ftplugin/gitcommit.vim: Remove test code from e70d92c495001c0af0037b9fad
-rw-r--r-- | ftplugin/gitcommit.vim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ftplugin/gitcommit.vim b/ftplugin/gitcommit.vim index 19577d2..485a7c1 100644 --- a/ftplugin/gitcommit.vim +++ b/ftplugin/gitcommit.vim @@ -30,12 +30,4 @@ function! StartGitSHACompletion() let &completefunc = old_completefunc endfunction -function! ASDF() - return "\<C-p>" -endfunction - -" inoremap <expr> <C-x><C-s> StartGitSHACompletion() -" inoremap <C-x><C-s> <C-r>=StartGitSHACompletion()<CR> inoremap <expr> <C-x><C-s> StartGitSHACompletion() - -inoremap <C-v> <C-r>=ASDF()<CR> |