Install vim74
[msysgit.git] / share / vim / vim74 / ftplugin / git.vim
blob5fe5b2b0c39b67110c01f522172ab88e4494ff4a
1 " Vim filetype plugin
2 " Language:     generic git output
3 " Maintainer:   Tim Pope <vimNOSPAM@tpope.org>
4 " Last Change:  2013 May 30
6 " Only do this when not done yet for this buffer
7 if (exists("b:did_ftplugin"))
8   finish
9 endif
10 let b:did_ftplugin = 1
12 if !exists('b:git_dir')
13   if expand('%:p') =~# '[\/]\.git[\/]modules[\/]'
14     " Stay out of the way
15   elseif expand('%:p') =~# '\.git\>'
16     let b:git_dir = matchstr(expand('%:p'),'.*\.git\>')
17   elseif $GIT_DIR != ''
18     let b:git_dir = $GIT_DIR
19   endif
20   if (has('win32') || has('win64')) && exists('b:git_dir')
21     let b:git_dir = substitute(b:git_dir,'\\','/','g')
22   endif
23 endif
25 if exists('*shellescape') && exists('b:git_dir') && b:git_dir != ''
26   if b:git_dir =~# '/\.git$' " Not a bare repository
27     let &l:path = escape(fnamemodify(b:git_dir,':h'),'\, ').','.&l:path
28   endif
29   let &l:path = escape(b:git_dir,'\, ').','.&l:path
30   let &l:keywordprg = 'git --git-dir='.shellescape(b:git_dir).' show'
31 else
32   setlocal keywordprg=git\ show
33 endif
34 if has('gui_running')
35   let &l:keywordprg = substitute(&l:keywordprg,'^git\>','git --no-pager','')
36 endif
38 setlocal includeexpr=substitute(v:fname,'^[^/]\\+/','','')
39 let b:undo_ftplugin = "setl keywordprg< path< includeexpr<"