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