mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-fugitive/plugin/fugitive.vim

356 lines
12 KiB
VimL
Raw Normal View History

" fugitive.vim - A Git wrapper so awesome, it should be illegal
" Maintainer: Tim Pope <http://tpo.pe/>
2019-08-22 11:36:17 -04:00
" Version: 3.0
" GetLatestVimScripts: 2975 1 :AutoInstall: fugitive.vim
2018-06-14 06:31:12 -04:00
if exists('g:loaded_fugitive')
finish
endif
let g:loaded_fugitive = 1
2018-07-30 17:18:16 -04:00
function! FugitiveGitDir(...) abort
if !a:0 || a:1 ==# -1
return get(b:, 'git_dir', '')
elseif type(a:1) == type(0)
return getbufvar(a:1, 'git_dir')
elseif type(a:1) == type('')
2018-08-25 12:13:42 -04:00
return substitute(s:Slash(a:1), '/$', '', '')
2018-07-30 17:18:16 -04:00
else
return ''
endif
endfunction
2019-08-22 11:36:17 -04:00
" FugitiveReal() takes a fugitive:// URL and returns the corresponding path in
" the work tree. This may be useful to get a cleaner path for inclusion in
" the statusline, for example. Note that the file and its parent directories
" are not guaranteed to exist.
"
" This is intended as an abstract API to be used on any "virtual" path. For a
" buffer named foo://bar, check for a function named FooReal(), and if it
" exists, call FooReal("foo://bar").
2018-07-30 17:18:16 -04:00
function! FugitiveReal(...) abort
let file = a:0 ? a:1 : @%
2018-08-25 12:13:42 -04:00
if file =~# '^\a\a\+:' || a:0 > 1
2018-07-30 17:18:16 -04:00
return call('fugitive#Real', [file] + a:000[1:-1])
2018-08-25 12:13:42 -04:00
elseif file =~# '^/\|^\a:\|^$'
2018-07-30 17:18:16 -04:00
return file
else
return fnamemodify(file, ':p' . (file =~# '[\/]$' ? '' : ':s?[\/]$??'))
endif
endfunction
2019-08-22 11:36:17 -04:00
" FugitiveFind() takes a Fugitive object and returns the appropriate Vim
" buffer name. You can use this to generate Fugitive URLs ("HEAD:README") or
" to get the absolute path to a file in the Git dir (".git/HEAD"), the common
" dir (".git/config"), or the work tree (":(top)Makefile").
"
" An optional second argument provides the Git dir, or the buffer number of a
" buffer with a Git dir. The default is the current buffer.
2018-11-01 06:03:42 -04:00
function! FugitiveFind(...) abort
return fugitive#Find(a:0 ? a:1 : bufnr(''), FugitiveGitDir(a:0 > 1 ? a:2 : -1))
2018-08-25 12:13:42 -04:00
endfunction
2018-07-30 17:18:16 -04:00
function! FugitivePath(...) abort
if a:0 > 1
return fugitive#Path(a:1, a:2, FugitiveGitDir(a:0 > 2 ? a:3 : -1))
else
return FugitiveReal(a:0 ? a:1 : @%)
endif
endfunction
2019-08-22 11:36:17 -04:00
" FugitiveParse() takes a fugitive:// URL and returns a 2 element list
" containing the Git dir and an object name ("commit:file"). It's effectively
" then inverse of FugitiveFind().
2018-07-30 17:18:16 -04:00
function! FugitiveParse(...) abort
2018-08-25 12:13:42 -04:00
let path = s:Slash(a:0 ? a:1 : @%)
2018-09-24 20:40:17 -04:00
if path !~# '^fugitive:'
return ['', '']
endif
2019-08-22 11:36:17 -04:00
let vals = matchlist(path, '\c^fugitive:\%(//\)\=\(.\{-\}\)\%(//\|::\)\(\x\{40,\}\|[0-3]\)\(/.*\)\=$')
2018-07-30 17:18:16 -04:00
if len(vals)
return [(vals[2] =~# '^.$' ? ':' : '') . vals[2] . substitute(vals[3], '^/', ':', ''), vals[1]]
endif
let v:errmsg = 'fugitive: invalid Fugitive URL ' . path
throw v:errmsg
endfunction
2019-08-22 11:36:17 -04:00
" FugitivePrepare() constructs a Git command string which can be executed with
" functions like system() and commands like :!. Integer arguments will be
" treated as buffer numbers, and the appropriate relative path inserted in
" their place.
"
" If the first argument is a string that looks like a path or an empty string,
" it will be used as the Git dir. If it's a buffer number, the Git dir for
" that buffer will be used. The default is the current buffer.
2018-12-17 06:28:27 -05:00
function! FugitivePrepare(...) abort
return call('fugitive#Prepare', a:000)
endfunction
2019-01-08 05:11:54 -05:00
function! FugitiveConfig(...) abort
if a:0 == 2 && type(a:2) != type({})
return fugitive#Config(a:1, FugitiveGitDir(a:2))
elseif a:0 == 1 && a:1 !~# '^[[:alnum:]-]\+\.'
return fugitive#Config(FugitiveGitDir(a:1))
else
return call('fugitive#Config', a:000)
endif
2018-07-30 17:18:16 -04:00
endfunction
function! FugitiveRemoteUrl(...) abort
return fugitive#RemoteUrl(a:0 ? a:1 : '', FugitiveGitDir(a:0 > 1 ? a:2 : -1))
endfunction
function! FugitiveHead(...) abort
let dir = FugitiveGitDir(a:0 > 1 ? a:2 : -1)
if empty(dir)
return ''
endif
2018-08-25 12:13:42 -04:00
return fugitive#Head(a:0 ? a:1 : 0, dir)
2018-07-30 17:18:16 -04:00
endfunction
function! FugitiveStatusline(...) abort
if !exists('b:git_dir')
return ''
endif
return fugitive#Statusline()
endfunction
2019-08-22 11:36:17 -04:00
function! FugitiveCommonDir(...) abort
let dir = FugitiveGitDir(a:0 ? a:1 : -1)
if empty(dir)
return ''
endif
return fugitive#CommonDir(dir)
endfunction
function! FugitiveWorkTree(...) abort
return s:Tree(FugitiveGitDir(a:0 ? a:1 : -1))
endfunction
2018-08-25 12:13:42 -04:00
function! FugitiveIsGitDir(path) abort
let path = substitute(a:path, '[\/]$', '', '') . '/'
2019-08-22 11:36:17 -04:00
return len(a:path) && getfsize(path.'HEAD') > 10 && (
2018-08-25 12:13:42 -04:00
\ isdirectory(path.'objects') && isdirectory(path.'refs') ||
\ getftype(path.'commondir') ==# 'file')
endfunction
let s:worktree_for_dir = {}
let s:dir_for_worktree = {}
2019-03-08 06:04:56 -05:00
function! s:Tree(path) abort
2018-08-25 12:13:42 -04:00
let dir = a:path
if dir =~# '/\.git$'
return len(dir) ==# 5 ? '/' : dir[0:-6]
2018-11-01 06:03:42 -04:00
elseif dir ==# ''
return ''
2018-08-25 12:13:42 -04:00
endif
if !has_key(s:worktree_for_dir, dir)
let s:worktree_for_dir[dir] = ''
let config_file = dir . '/config'
if filereadable(config_file)
let config = readfile(config_file,'',10)
call filter(config,'v:val =~# "^\\s*worktree *="')
if len(config) == 1
2019-08-22 11:36:17 -04:00
let worktree = s:Slash(FugitiveVimPath(matchstr(config[0], '= *\zs.*')))
2018-08-25 12:13:42 -04:00
endif
elseif filereadable(dir . '/gitdir')
2019-08-22 11:36:17 -04:00
let worktree = s:Slash(fnamemodify(FugitiveVimPath(readfile(dir . '/gitdir')[0]), ':h'))
2018-08-25 12:13:42 -04:00
if worktree ==# '.'
unlet! worktree
endif
endif
if exists('worktree')
let s:worktree_for_dir[dir] = worktree
let s:dir_for_worktree[s:worktree_for_dir[dir]] = dir
endif
endif
if s:worktree_for_dir[dir] =~# '^\.'
return simplify(dir . '/' . s:worktree_for_dir[dir])
else
return s:worktree_for_dir[dir]
endif
2018-07-30 17:18:16 -04:00
endfunction
2018-06-14 06:31:12 -04:00
function! FugitiveExtractGitDir(path) abort
2018-08-25 12:13:42 -04:00
let path = s:Slash(a:path)
2018-07-04 06:53:25 -04:00
if path =~# '^fugitive:'
return matchstr(path, '\C^fugitive:\%(//\)\=\zs.\{-\}\ze\%(//\|::\|$\)')
2018-06-14 06:31:12 -04:00
elseif isdirectory(path)
let path = fnamemodify(path, ':p:s?/$??')
2017-05-02 08:42:08 -04:00
else
2018-06-14 06:31:12 -04:00
let path = fnamemodify(path, ':p:h:s?/$??')
endif
2018-07-30 17:18:16 -04:00
let pre = substitute(matchstr(path, '^\a\a\+\ze:'), '^.', '\u&', '')
if len(pre) && exists('*' . pre . 'Real')
2018-08-25 12:13:42 -04:00
let path = s:Slash({pre}Real(path))
2018-07-30 17:18:16 -04:00
endif
2018-06-14 06:31:12 -04:00
let root = resolve(path)
if root !=# path
2019-08-22 11:36:17 -04:00
silent! exe (haslocaldir() ? 'lcd' : exists(':tcd') && haslocaldir(-1) ? 'tcd' : 'cd') '.'
2017-05-02 08:42:08 -04:00
endif
let previous = ""
2019-08-22 11:36:17 -04:00
let env_git_dir = len($GIT_DIR) ? s:Slash(simplify(fnamemodify(FugitiveVimPath($GIT_DIR), ':p:s?[\/]$??'))) : ''
call s:Tree(env_git_dir)
while root !=# previous
if root =~# '\v^//%([^/]+/?)?$'
break
endif
if index(split($GIT_CEILING_DIRECTORIES, ':'), root) >= 0
break
endif
2019-08-22 11:36:17 -04:00
if root ==# $GIT_WORK_TREE && FugitiveIsGitDir(env_git_dir)
return env_git_dir
elseif has_key(s:dir_for_worktree, root)
return s:dir_for_worktree[root]
2015-01-18 07:58:28 -05:00
endif
2018-06-14 06:31:12 -04:00
let dir = substitute(root, '[\/]$', '', '') . '/.git'
let type = getftype(dir)
2018-06-14 06:31:12 -04:00
if type ==# 'dir' && FugitiveIsGitDir(dir)
return dir
2018-06-14 06:31:12 -04:00
elseif type ==# 'link' && FugitiveIsGitDir(dir)
return resolve(dir)
elseif type !=# '' && filereadable(dir)
let line = get(readfile(dir, '', 1), 0, '')
2019-08-22 11:36:17 -04:00
let file_dir = s:Slash(FugitiveVimPath(matchstr(line, '^gitdir: \zs.*')))
if file_dir !~# '^/\|^\a:' && FugitiveIsGitDir(root . '/' . file_dir)
return simplify(root . '/' . file_dir)
elseif len(file_dir) && FugitiveIsGitDir(file_dir)
return file_dir
endif
2018-06-14 06:31:12 -04:00
elseif FugitiveIsGitDir(root)
return root
endif
let previous = root
let root = fnamemodify(root, ':h')
endwhile
return ''
endfunction
2018-06-14 06:31:12 -04:00
function! FugitiveDetect(path) abort
2018-07-19 08:52:53 -04:00
if exists('b:git_dir') && b:git_dir =~# '^$\|/$\|^fugitive:'
unlet b:git_dir
endif
if !exists('b:git_dir')
2018-06-14 06:31:12 -04:00
let dir = FugitiveExtractGitDir(a:path)
if dir !=# ''
let b:git_dir = dir
endif
endif
if exists('b:git_dir')
2018-06-14 06:31:12 -04:00
return fugitive#Init()
endif
endfunction
2019-08-22 11:36:17 -04:00
function! FugitiveVimPath(path) abort
if exists('+shellslash') && !&shellslash
return tr(a:path, '/', '\')
else
return a:path
endif
endfunction
function! FugitiveGitPath(path) abort
return s:Slash(a:path)
endfunction
2018-08-25 12:13:42 -04:00
function! s:Slash(path) abort
if exists('+shellslash')
return tr(a:path, '\', '/')
else
return a:path
endif
endfunction
2018-09-24 20:40:17 -04:00
function! s:ProjectionistDetect() abort
let file = s:Slash(get(g:, 'projectionist_file', ''))
let dir = FugitiveExtractGitDir(file)
let base = matchstr(file, '^fugitive://.\{-\}//\x\+')
if empty(base)
2019-03-08 06:04:56 -05:00
let base = s:Tree(dir)
2018-09-24 20:40:17 -04:00
endif
if len(base)
if exists('+shellslash') && !&shellslash
let base = tr(base, '/', '\')
endif
2019-08-22 11:36:17 -04:00
let file = FugitiveCommonDir(dir) . '/info/projections.json'
if filereadable(file)
call projectionist#append(base, file)
endif
2018-09-24 20:40:17 -04:00
endif
endfunction
2018-06-14 06:31:12 -04:00
augroup fugitive
autocmd!
2018-07-30 17:18:16 -04:00
autocmd BufNewFile,BufReadPost * call FugitiveDetect(expand('<amatch>:p'))
autocmd FileType netrw call FugitiveDetect(fnamemodify(get(b:, 'netrw_curdir', expand('<amatch>')), ':p'))
2018-07-19 08:52:53 -04:00
autocmd User NERDTreeInit,NERDTreeNewRoot
\ if exists('b:NERDTree.root.path.str') |
\ call FugitiveDetect(b:NERDTree.root.path.str()) |
\ endif
2018-07-30 17:18:16 -04:00
autocmd VimEnter * if empty(expand('<amatch>'))|call FugitiveDetect(getcwd())|endif
2018-06-14 06:31:12 -04:00
autocmd CmdWinEnter * call FugitiveDetect(expand('#:p'))
2018-07-04 06:53:25 -04:00
autocmd FileType git
2019-03-08 06:04:56 -05:00
\ if len(FugitiveGitDir()) |
2018-07-30 17:18:16 -04:00
\ call fugitive#MapJumps() |
\ call fugitive#MapCfile() |
2018-07-04 06:53:25 -04:00
\ endif
2018-07-30 17:18:16 -04:00
autocmd FileType gitcommit
2019-03-08 06:04:56 -05:00
\ if len(FugitiveGitDir()) |
2019-01-08 05:11:54 -05:00
\ call fugitive#MapCfile('fugitive#MessageCfile()') |
\ endif
autocmd FileType fugitive
2019-03-08 06:04:56 -05:00
\ if len(FugitiveGitDir()) |
2018-07-30 17:18:16 -04:00
\ call fugitive#MapCfile('fugitive#StatusCfile()') |
2018-07-04 06:53:25 -04:00
\ endif
2018-07-30 17:18:16 -04:00
autocmd FileType gitrebase
\ let &l:include = '^\%(pick\|squash\|edit\|reword\|fixup\|drop\|[pserfd]\)\>' |
2019-03-08 06:04:56 -05:00
\ if len(FugitiveGitDir()) |
2019-08-22 11:36:17 -04:00
\ let &l:includeexpr = 'v:fname =~# ''^\x\{4,\}$'' ? FugitiveFind(v:fname) : ' .
2018-07-30 17:18:16 -04:00
\ (len(&l:includeexpr) ? &l:includeexpr : 'v:fname') |
\ endif |
\ let b:undo_ftplugin = get(b:, 'undo_ftplugin', 'exe') . '|setl inex= inc='
2018-07-04 06:53:25 -04:00
2018-07-30 17:18:16 -04:00
autocmd BufReadCmd index{,.lock}
2018-06-14 06:31:12 -04:00
\ if FugitiveIsGitDir(expand('<amatch>:p:h')) |
2018-08-25 12:13:42 -04:00
\ let b:git_dir = s:Slash(expand('<amatch>:p:h')) |
2018-06-14 06:31:12 -04:00
\ exe fugitive#BufReadStatus() |
\ elseif filereadable(expand('<amatch>')) |
2019-03-08 06:04:56 -05:00
\ silent doautocmd BufReadPre |
\ keepalt read <amatch> |
2018-07-30 17:18:16 -04:00
\ 1delete_ |
2019-03-08 06:04:56 -05:00
\ silent doautocmd BufReadPost |
\ else |
\ silent doautocmd BufNewFile |
2018-06-14 06:31:12 -04:00
\ endif
2019-03-08 06:04:56 -05:00
2018-07-30 17:18:16 -04:00
autocmd BufReadCmd fugitive://*//* exe fugitive#BufReadCmd()
autocmd BufWriteCmd fugitive://*//[0-3]/* exe fugitive#BufWriteCmd()
autocmd FileReadCmd fugitive://*//* exe fugitive#FileReadCmd()
autocmd FileWriteCmd fugitive://*//[0-3]/* exe fugitive#FileWriteCmd()
if exists('##SourceCmd')
autocmd SourceCmd fugitive://*//* nested exe fugitive#SourceCmd()
endif
2018-06-14 06:31:12 -04:00
autocmd User Flags call Hoist('buffer', function('FugitiveStatusline'))
2018-09-24 20:40:17 -04:00
autocmd User ProjectionistDetect call s:ProjectionistDetect()
augroup END
2019-08-22 11:36:17 -04:00
let g:io_fugitive = {
\ 'simplify': function('fugitive#simplify'),
\ 'resolve': function('fugitive#resolve'),
\ 'getftime': function('fugitive#getftime'),
\ 'getfsize': function('fugitive#getfsize'),
\ 'getftype': function('fugitive#getftype'),
\ 'filereadable': function('fugitive#filereadable'),
\ 'filewritable': function('fugitive#filewritable'),
\ 'isdirectory': function('fugitive#isdirectory'),
\ 'getfperm': function('fugitive#getfperm'),
\ 'setfperm': function('fugitive#setfperm'),
\ 'readfile': function('fugitive#readfile'),
\ 'writefile': function('fugitive#writefile'),
\ 'glob': function('fugitive#glob'),
\ 'delete': function('fugitive#delete'),
\ 'Real': function('FugitiveReal')}