aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/gitcommit.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftplugin/gitcommit.vim')
-rw-r--r--ftplugin/gitcommit.vim34
1 files changed, 0 insertions, 34 deletions
diff --git a/ftplugin/gitcommit.vim b/ftplugin/gitcommit.vim
deleted file mode 100644
index e08f2e0..0000000
--- a/ftplugin/gitcommit.vim
+++ /dev/null
@@ -1,34 +0,0 @@
-let s:old_completefunc = &completefunc
-
-function! GitSHAComplete(findstart, base)
- if a:findstart
- " locate the start of the word
- let line = getline('.')
- let start = col('.') - 1
- while start > 0 && line[start - 1] =~ '\a'
- let start -= 1
- endwhile
- return start
- endif
-
- " Restore user completion function
- let &completefunc = s:old_completefunc
-
- " Match Git SHAs in the current repository
- let matches = []
- let revs = system('git rev-list --all')
- for m in split(revs)
- if m =~ '^' . a:base
- call add(matches, m)
- endif
- endfor
-
- return matches
-endfunction
-
-function! StartGitSHACompletion()
- set completefunc=GitSHAComplete
- return "\<C-x>\<C-u>"
-endfunction
-
-inoremap <expr> <C-x><C-s> StartGitSHACompletion()