xref: /vim-8.2.3635/runtime/ftplugin/git.vim (revision 818c9e7e)
1" Vim filetype plugin
2" Language:	generic git output
3" Maintainer:	Tim Pope <[email protected]>
4" Last Change:	2013 May 30
5
6" Only do this when not done yet for this buffer
7if (exists("b:did_ftplugin"))
8  finish
9endif
10let b:did_ftplugin = 1
11
12if !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
23endif
24
25if 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'
31else
32  setlocal keywordprg=git\ show
33endif
34if has('gui_running')
35  let &l:keywordprg = substitute(&l:keywordprg,'^git\>','git --no-pager','')
36endif
37
38setlocal includeexpr=substitute(v:fname,'^[^/]\\+/','','')
39let b:undo_ftplugin = "setl keywordprg< path< includeexpr<"
40