blob: aaa6c1ac09a49e827c685a93a335bb22174a17a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if exists('g:no_plugin_maps') || exists('g:no_gitcha_maps')
finish
endif
if !hasmapto('<Plug>GitchaCompleteSHA')
imap <buffer> <C-x><C-s> <Plug>GitchaCompleteSHA
endif
inoremap <buffer> <expr> <Plug>GitchaCompleteSHA gitcha#StartGitSHACompletion()
let b:undo_ftplugin = 'iunmap <buffer> <C-x><C-s>'
|