2 " Language: generic git output
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
5 " Only do this when not done yet for this buffer
6 if (exists("b:did_ftplugin"))
11 if !exists('b:git_dir')
12 if expand('%:p') =~# '\.git\>'
13 let b:git_dir = matchstr(expand('%:p'),'.*\.git\>')
15 let b:git_dir = $GIT_DIR
17 if (has('win32') || has('win64')) && exists('b:git_dir')
18 let b:git_dir = substitute(b:git_dir,'\\','/','g')
22 if exists('*shellescape') && exists('b:git_dir') && b:git_dir != ''
23 if b:git_dir =~# '/\.git$' " Not a bare repository
24 let &l:path = escape(fnamemodify(b:git_dir,':h'),'\, ').','.&l:path
26 let &l:path = escape(b:git_dir,'\, ').','.&l:path
27 let &l:keywordprg = 'git --git-dir='.shellescape(b:git_dir).' show'
29 setlocal keywordprg=git\ show
32 let &l:keywordprg = substitute(&l:keywordprg,'^git\>','git --no-pager','')
35 setlocal includeexpr=substitute(v:fname,'^[^/]\\+/','','')
36 let b:undo_ftplugin = "setl keywordprg< path< includeexpr<"