|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
" fugitive.vim - A Git wrapper so awesome, it should be illegal
|
|
|
|
" fugitive.vim - A Git wrapper so awesome, it should be illegal
|
|
|
|
" Maintainer: Tim Pope <http://tpo.pe/>
|
|
|
|
" Maintainer: Tim Pope <http://tpo.pe/>
|
|
|
|
" Version: 3.4
|
|
|
|
" Version: 3.7
|
|
|
|
" GetLatestVimScripts: 2975 1 :AutoInstall: fugitive.vim
|
|
|
|
" GetLatestVimScripts: 2975 1 :AutoInstall: fugitive.vim
|
|
|
|
|
|
|
|
|
|
|
|
if exists('g:loaded_fugitive')
|
|
|
|
if exists('g:loaded_fugitive')
|
|
|
|
@@ -25,14 +25,14 @@ function! FugitiveGitDir(...) abort
|
|
|
|
let dir = get(b:, 'git_dir', '')
|
|
|
|
let dir = get(b:, 'git_dir', '')
|
|
|
|
if empty(dir) && (empty(bufname('')) || &buftype =~# '^\%(nofile\|acwrite\|quickfix\|terminal\|prompt\)$')
|
|
|
|
if empty(dir) && (empty(bufname('')) || &buftype =~# '^\%(nofile\|acwrite\|quickfix\|terminal\|prompt\)$')
|
|
|
|
return FugitiveExtractGitDir(getcwd())
|
|
|
|
return FugitiveExtractGitDir(getcwd())
|
|
|
|
elseif (!exists('b:git_dir') || b:git_dir =~# s:bad_git_dir) && empty(&buftype)
|
|
|
|
elseif (!exists('b:git_dir') || b:git_dir =~# s:bad_git_dir) && &buftype =~# '^\%(nowrite\)\=$'
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(expand('%:p'))
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(bufnr(''))
|
|
|
|
return b:git_dir
|
|
|
|
return b:git_dir
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return dir =~# s:bad_git_dir ? '' : dir
|
|
|
|
return dir =~# s:bad_git_dir ? '' : dir
|
|
|
|
elseif type(a:1) == type(0) && a:1 isnot# 0
|
|
|
|
elseif type(a:1) == type(0) && a:1 isnot# 0
|
|
|
|
if a:1 == bufnr('') && (!exists('b:git_dir') || b:git_dir =~# s:bad_git_dir) && empty(&buftype)
|
|
|
|
if a:1 == bufnr('') && (!exists('b:git_dir') || b:git_dir =~# s:bad_git_dir) && &buftype =~# '^\%(nowrite\)\=$'
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(expand('%:p'))
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(a:1)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let dir = getbufvar(a:1, 'git_dir')
|
|
|
|
let dir = getbufvar(a:1, 'git_dir')
|
|
|
|
return dir =~# s:bad_git_dir ? '' : dir
|
|
|
|
return dir =~# s:bad_git_dir ? '' : dir
|
|
|
|
@@ -58,7 +58,7 @@ function! FugitiveReal(...) abort
|
|
|
|
if type(file) ==# type({})
|
|
|
|
if type(file) ==# type({})
|
|
|
|
let dir = FugitiveGitDir(file)
|
|
|
|
let dir = FugitiveGitDir(file)
|
|
|
|
let tree = s:Tree(dir)
|
|
|
|
let tree = s:Tree(dir)
|
|
|
|
return FugitiveVimPath(empty(tree) ? dir : tree)
|
|
|
|
return s:VimSlash(empty(tree) ? dir : tree)
|
|
|
|
elseif file =~# '^\a\a\+:' || a:0 > 1
|
|
|
|
elseif file =~# '^\a\a\+:' || a:0 > 1
|
|
|
|
return call('fugitive#Real', [file] + a:000[1:-1])
|
|
|
|
return call('fugitive#Real', [file] + a:000[1:-1])
|
|
|
|
elseif file =~# '^/\|^\a:\|^$'
|
|
|
|
elseif file =~# '^/\|^\a:\|^$'
|
|
|
|
@@ -88,12 +88,12 @@ endfunction
|
|
|
|
" the inverse of FugitiveFind().
|
|
|
|
" the inverse of FugitiveFind().
|
|
|
|
function! FugitiveParse(...) abort
|
|
|
|
function! FugitiveParse(...) abort
|
|
|
|
let path = s:Slash(a:0 ? a:1 : @%)
|
|
|
|
let path = s:Slash(a:0 ? a:1 : @%)
|
|
|
|
if path !~# '^fugitive:'
|
|
|
|
if path !~# '^fugitive://'
|
|
|
|
return ['', '']
|
|
|
|
return ['', '']
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let vals = matchlist(path, '\c^fugitive:\%(//\)\=\(.\{-\}\)\%(//\|::\)\(\x\{40,\}\|[0-3]\)\(/.*\)\=$')
|
|
|
|
let vals = matchlist(path, s:dir_commit_file)
|
|
|
|
if len(vals)
|
|
|
|
if len(vals)
|
|
|
|
return [(vals[2] =~# '^.$' ? ':' : '') . vals[2] . substitute(vals[3], '^/', ':', ''), vals[1]]
|
|
|
|
return [(vals[2] =~# '^.\=$' ? ':' : '') . vals[2] . substitute(vals[3], '^/', ':', ''), vals[1]]
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let v:errmsg = 'fugitive: invalid Fugitive URL ' . path
|
|
|
|
let v:errmsg = 'fugitive: invalid Fugitive URL ' . path
|
|
|
|
throw v:errmsg
|
|
|
|
throw v:errmsg
|
|
|
|
@@ -210,6 +210,24 @@ function! FugitiveRemoteUrl(...) abort
|
|
|
|
return call('fugitive#RemoteUrl', a:000)
|
|
|
|
return call('fugitive#RemoteUrl', a:000)
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" FugitiveRemote() returns a data structure parsed from the remote URL.
|
|
|
|
|
|
|
|
" For example, for remote URL "https://me@example.com:1234/repo.git", the
|
|
|
|
|
|
|
|
" returned dictionary will contain the following:
|
|
|
|
|
|
|
|
"
|
|
|
|
|
|
|
|
" * "scheme": "https"
|
|
|
|
|
|
|
|
" * "authority": "user@example.com:1234"
|
|
|
|
|
|
|
|
" * "path": "/repo.git" (for SSH URLs this may be a relative path)
|
|
|
|
|
|
|
|
" * "pathname": "/repo.git" (always coerced to absolute path)
|
|
|
|
|
|
|
|
" * "host": "example.com:1234"
|
|
|
|
|
|
|
|
" * "hostname": "example.com"
|
|
|
|
|
|
|
|
" * "port": "1234"
|
|
|
|
|
|
|
|
" * "user": "me"
|
|
|
|
|
|
|
|
" * "path": "/repo.git"
|
|
|
|
|
|
|
|
" * "url": "https://me@example.com:1234/repo.git"
|
|
|
|
|
|
|
|
function! FugitiveRemote(...) abort
|
|
|
|
|
|
|
|
return call('fugitive#Remote', a:000)
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
" FugitiveDidChange() triggers a FugitiveChanged event and reloads the summary
|
|
|
|
" FugitiveDidChange() triggers a FugitiveChanged event and reloads the summary
|
|
|
|
" buffer for the current or given buffer number's repository. You can also
|
|
|
|
" buffer for the current or given buffer number's repository. You can also
|
|
|
|
" give the result of a FugitiveExecute() and that context will be made
|
|
|
|
" give the result of a FugitiveExecute() and that context will be made
|
|
|
|
@@ -259,18 +277,38 @@ function! FugitivePath(...) abort
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveStatusline(...) abort
|
|
|
|
function! FugitiveStatusline(...) abort
|
|
|
|
if empty(get(b:, 'git_dir', ''))
|
|
|
|
if empty(FugitiveGitDir(bufnr('')))
|
|
|
|
return ''
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return fugitive#Statusline()
|
|
|
|
return fugitive#Statusline()
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveActualDir(...) abort
|
|
|
|
|
|
|
|
return call('FugitiveGitDir', a:000)
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let s:commondirs = {}
|
|
|
|
function! FugitiveCommonDir(...) abort
|
|
|
|
function! FugitiveCommonDir(...) abort
|
|
|
|
let dir = FugitiveGitDir(a:0 ? a:1 : -1)
|
|
|
|
let dir = call('FugitiveActualDir', a:000)
|
|
|
|
if empty(dir)
|
|
|
|
if empty(dir)
|
|
|
|
return ''
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return fugitive#Find('.git/refs/..', dir)
|
|
|
|
if has_key(s:commondirs, dir)
|
|
|
|
|
|
|
|
return s:commondirs[dir]
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if getfsize(dir . '/HEAD') >= 10
|
|
|
|
|
|
|
|
let cdir = get(s:ReadFile(dir . '/commondir', 1), 0, '')
|
|
|
|
|
|
|
|
if cdir =~# '^/\|^\a:/'
|
|
|
|
|
|
|
|
let s:commondirs[dir] = s:Slash(FugitiveVimPath(cdir))
|
|
|
|
|
|
|
|
elseif len(cdir)
|
|
|
|
|
|
|
|
let s:commondirs[dir] = simplify(dir . '/' . cdir)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
let s:commondirs[dir] = dir
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
let s:commondirs[dir] = dir
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
return s:commondirs[dir]
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveWorkTree(...) abort
|
|
|
|
function! FugitiveWorkTree(...) abort
|
|
|
|
@@ -292,6 +330,17 @@ function! FugitiveIsGitDir(...) abort
|
|
|
|
\ getftype(path.'commondir') ==# 'file')
|
|
|
|
\ getftype(path.'commondir') ==# 'file')
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! s:ReadFile(path, line_count) abort
|
|
|
|
|
|
|
|
if v:version < 800 && !filereadable(a:path)
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
|
|
return readfile(a:path, 'b', a:line_count)
|
|
|
|
|
|
|
|
catch
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
endtry
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
let s:worktree_for_dir = {}
|
|
|
|
let s:worktree_for_dir = {}
|
|
|
|
let s:dir_for_worktree = {}
|
|
|
|
let s:dir_for_worktree = {}
|
|
|
|
function! s:Tree(path) abort
|
|
|
|
function! s:Tree(path) abort
|
|
|
|
@@ -303,23 +352,32 @@ function! s:Tree(path) abort
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if !has_key(s:worktree_for_dir, dir)
|
|
|
|
if !has_key(s:worktree_for_dir, dir)
|
|
|
|
let s:worktree_for_dir[dir] = ''
|
|
|
|
let s:worktree_for_dir[dir] = ''
|
|
|
|
let config_file = dir . '/config'
|
|
|
|
let ext_wtc_pat = 'v:val =~# "^\\s*worktreeConfig *= *\\%(true\\|yes\\|on\\|1\\) *$"'
|
|
|
|
if filereadable(config_file)
|
|
|
|
let config = s:ReadFile(dir . '/config', 50)
|
|
|
|
let config = readfile(config_file,'',10)
|
|
|
|
|
|
|
|
let wt_config = filter(copy(config),'v:val =~# "^\\s*worktree *="')
|
|
|
|
|
|
|
|
if len(wt_config) == 1
|
|
|
|
|
|
|
|
let worktree = FugitiveVimPath(matchstr(wt_config[0], '= *\zs.*'))
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
call filter(config,'v:val =~# "^\\s*bare *= *false *$"')
|
|
|
|
|
|
|
|
if len(config)
|
|
|
|
if len(config)
|
|
|
|
let s:worktree_for_dir[dir] = 0
|
|
|
|
let ext_wtc_config = filter(copy(config), ext_wtc_pat)
|
|
|
|
|
|
|
|
if len(ext_wtc_config) == 1 && filereadable(dir . '/config.worktree')
|
|
|
|
|
|
|
|
let config += s:ReadFile(dir . '/config.worktree', 50)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
elseif filereadable(dir . '/gitdir')
|
|
|
|
let worktree = fnamemodify(FugitiveVimPath(get(s:ReadFile(dir . '/gitdir', 1), '0', '')), ':h')
|
|
|
|
let worktree = fnamemodify(FugitiveVimPath(readfile(dir . '/gitdir')[0]), ':h')
|
|
|
|
|
|
|
|
if worktree ==# '.'
|
|
|
|
if worktree ==# '.'
|
|
|
|
unlet! worktree
|
|
|
|
unlet! worktree
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if len(filter(s:ReadFile(FugitiveCommonDir(dir) . '/config', 50), ext_wtc_pat))
|
|
|
|
|
|
|
|
let config = s:ReadFile(dir . '/config.worktree', 50)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
if len(config)
|
|
|
|
|
|
|
|
let wt_config = filter(copy(config), 'v:val =~# "^\\s*worktree *="')
|
|
|
|
|
|
|
|
if len(wt_config)
|
|
|
|
|
|
|
|
let worktree = FugitiveVimPath(matchstr(wt_config[0], '= *\zs.*'))
|
|
|
|
|
|
|
|
elseif !exists('worktree')
|
|
|
|
|
|
|
|
call filter(config,'v:val =~# "^\\s*bare *= *true *$"')
|
|
|
|
|
|
|
|
if empty(config)
|
|
|
|
|
|
|
|
let s:worktree_for_dir[dir] = 0
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if exists('worktree')
|
|
|
|
if exists('worktree')
|
|
|
|
let s:worktree_for_dir[dir] = s:Slash(resolve(worktree))
|
|
|
|
let s:worktree_for_dir[dir] = s:Slash(resolve(worktree))
|
|
|
|
@@ -341,48 +399,39 @@ function! s:CeilingDirectories() abort
|
|
|
|
if empty(dir)
|
|
|
|
if empty(dir)
|
|
|
|
let resolve = 0
|
|
|
|
let resolve = 0
|
|
|
|
elseif resolve
|
|
|
|
elseif resolve
|
|
|
|
call add(s:ceiling_directories, resolve(dir))
|
|
|
|
call add(s:ceiling_directories, s:Slash(resolve(dir)))
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call add(s:ceiling_directories, dir)
|
|
|
|
call add(s:ceiling_directories, s:Slash(dir))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return s:ceiling_directories + get(g:, 'ceiling_directories', [])
|
|
|
|
return s:ceiling_directories + get(g:, 'ceiling_directories', [s:Slash(fnamemodify(expand('~'), ':h'))])
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveExtractGitDir(path) abort
|
|
|
|
function! FugitiveExtractGitDir(path) abort
|
|
|
|
if type(a:path) ==# type({})
|
|
|
|
if type(a:path) ==# type({})
|
|
|
|
return get(a:path, 'git_dir', '')
|
|
|
|
return get(a:path, 'git_dir', '')
|
|
|
|
elseif type(a:path) == type(0)
|
|
|
|
elseif type(a:path) == type(0)
|
|
|
|
let path = s:Slash(a:path >= 0 ? bufname(a:path) : bufname(''))
|
|
|
|
let path = s:Slash(a:path > 0 ? bufname(a:path) : bufname(''))
|
|
|
|
else
|
|
|
|
else
|
|
|
|
let path = s:Slash(a:path)
|
|
|
|
let path = s:Slash(a:path)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if path =~# '^fugitive:'
|
|
|
|
if path =~# '^fugitive://'
|
|
|
|
return matchstr(path, '\C^fugitive:\%(//\)\=\zs.\{-\}\ze\%(//\|::\|$\)')
|
|
|
|
return get(matchlist(path, s:dir_commit_file), 1, '')
|
|
|
|
elseif empty(path)
|
|
|
|
elseif empty(path)
|
|
|
|
return ''
|
|
|
|
return ''
|
|
|
|
elseif isdirectory(path)
|
|
|
|
|
|
|
|
let path = fnamemodify(path, ':p:s?/$??')
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
let path = fnamemodify(path, ':p:h:s?/$??')
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let pre = substitute(matchstr(path, '^\a\a\+\ze:'), '^.', '\u&', '')
|
|
|
|
let pre = substitute(matchstr(path, '^\a\a\+\ze:'), '^.', '\u&', '')
|
|
|
|
if len(pre) && exists('*' . pre . 'Real')
|
|
|
|
if len(pre) && exists('*' . pre . 'Real')
|
|
|
|
let path = s:Slash({pre}Real(path))
|
|
|
|
let path = {pre}Real(path)
|
|
|
|
endif
|
|
|
|
|
|
|
|
let root = resolve(path)
|
|
|
|
|
|
|
|
if root !=# path
|
|
|
|
|
|
|
|
silent! exe (haslocaldir() ? 'lcd' : exists(':tcd') && haslocaldir(-1) ? 'tcd' : 'cd') '.'
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
let root = s:Slash(fnamemodify(path, ':p:h'))
|
|
|
|
let previous = ""
|
|
|
|
let previous = ""
|
|
|
|
let env_git_dir = len($GIT_DIR) ? s:Slash(simplify(fnamemodify(FugitiveVimPath($GIT_DIR), ':p:s?[\/]$??'))) : ''
|
|
|
|
let env_git_dir = len($GIT_DIR) ? s:Slash(simplify(fnamemodify(FugitiveVimPath($GIT_DIR), ':p:s?[\/]$??'))) : ''
|
|
|
|
call s:Tree(env_git_dir)
|
|
|
|
call s:Tree(env_git_dir)
|
|
|
|
while root !=# previous
|
|
|
|
let ceiling_directories = s:CeilingDirectories()
|
|
|
|
if root =~# '\v^//%([^/]+/?)?$'
|
|
|
|
while root !=# previous && root !~# '^$\|^//[^/]*$'
|
|
|
|
break
|
|
|
|
if index(ceiling_directories, root) >= 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if index(s:CeilingDirectories(), root) >= 0
|
|
|
|
|
|
|
|
break
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if root ==# $GIT_WORK_TREE && FugitiveIsGitDir(env_git_dir)
|
|
|
|
if root ==# $GIT_WORK_TREE && FugitiveIsGitDir(env_git_dir)
|
|
|
|
@@ -396,10 +445,10 @@ function! FugitiveExtractGitDir(path) abort
|
|
|
|
return dir
|
|
|
|
return dir
|
|
|
|
elseif type ==# 'link' && FugitiveIsGitDir(dir)
|
|
|
|
elseif type ==# 'link' && FugitiveIsGitDir(dir)
|
|
|
|
return resolve(dir)
|
|
|
|
return resolve(dir)
|
|
|
|
elseif type !=# '' && filereadable(dir)
|
|
|
|
elseif type !=# ''
|
|
|
|
let line = get(readfile(dir, '', 1), 0, '')
|
|
|
|
let line = get(s:ReadFile(dir, 1), 0, '')
|
|
|
|
let file_dir = s:Slash(FugitiveVimPath(matchstr(line, '^gitdir: \zs.*')))
|
|
|
|
let file_dir = s:Slash(FugitiveVimPath(matchstr(line, '^gitdir: \zs.*')))
|
|
|
|
if file_dir !~# '^/\|^\a:' && FugitiveIsGitDir(root . '/' . file_dir)
|
|
|
|
if file_dir !~# '^/\|^\a:\|^$' && FugitiveIsGitDir(root . '/' . file_dir)
|
|
|
|
return simplify(root . '/' . file_dir)
|
|
|
|
return simplify(root . '/' . file_dir)
|
|
|
|
elseif len(file_dir) && FugitiveIsGitDir(file_dir)
|
|
|
|
elseif len(file_dir) && FugitiveIsGitDir(file_dir)
|
|
|
|
return file_dir
|
|
|
|
return file_dir
|
|
|
|
@@ -420,6 +469,9 @@ function! FugitiveDetect(...) abort
|
|
|
|
if exists('b:git_dir') && b:git_dir =~# '^$\|' . s:bad_git_dir
|
|
|
|
if exists('b:git_dir') && b:git_dir =~# '^$\|' . s:bad_git_dir
|
|
|
|
unlet b:git_dir
|
|
|
|
unlet b:git_dir
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if a:0 > 1 && a:2 is# 0 && !exists('#User#Fugitive')
|
|
|
|
|
|
|
|
return ''
|
|
|
|
|
|
|
|
endif
|
|
|
|
if !exists('b:git_dir')
|
|
|
|
if !exists('b:git_dir')
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(a:0 ? a:1 : bufnr(''))
|
|
|
|
let b:git_dir = FugitiveExtractGitDir(a:0 ? a:1 : bufnr(''))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
@@ -442,32 +494,54 @@ function! FugitiveDetect(...) abort
|
|
|
|
return ''
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveVimPath(path) abort
|
|
|
|
|
|
|
|
if exists('+shellslash') && !&shellslash
|
|
|
|
|
|
|
|
return tr(a:path, '/', '\')
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
return a:path
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! FugitiveGitPath(path) abort
|
|
|
|
function! FugitiveGitPath(path) abort
|
|
|
|
return s:Slash(a:path)
|
|
|
|
return s:Slash(a:path)
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
if exists('+shellslash')
|
|
|
|
if exists('+shellslash')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let s:dir_commit_file = '\c^fugitive://\%(/\a\@=\)\=\(.\{-\}\)//\%(\(\x\{40,\}\|[0-3]\)\(/.*\)\=\)\=$'
|
|
|
|
|
|
|
|
|
|
|
|
function! s:Slash(path) abort
|
|
|
|
function! s:Slash(path) abort
|
|
|
|
return tr(a:path, '\', '/')
|
|
|
|
return tr(a:path, '\', '/')
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! s:VimSlash(path) abort
|
|
|
|
|
|
|
|
return tr(a:path, '\/', &shellslash ? '//' : '\\')
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function FugitiveVimPath(path) abort
|
|
|
|
|
|
|
|
return tr(a:path, '\/', &shellslash ? '//' : '\\')
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let s:dir_commit_file = '\c^fugitive://\(.\{-\}\)//\%(\(\x\{40,\}\|[0-3]\)\(/.*\)\=\)\=$'
|
|
|
|
|
|
|
|
|
|
|
|
function! s:Slash(path) abort
|
|
|
|
function! s:Slash(path) abort
|
|
|
|
return a:path
|
|
|
|
return a:path
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function! s:VimSlash(path) abort
|
|
|
|
|
|
|
|
return a:path
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if has('win32unix') && filereadable('/git-bash.exe')
|
|
|
|
|
|
|
|
function! FugitiveVimPath(path) abort
|
|
|
|
|
|
|
|
return substitute(a:path, '^\(\a\):', '/\l\1', '')
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
function! FugitiveVimPath(path) abort
|
|
|
|
|
|
|
|
return a:path
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
function! s:ProjectionistDetect() abort
|
|
|
|
function! s:ProjectionistDetect() abort
|
|
|
|
let file = s:Slash(get(g:, 'projectionist_file', ''))
|
|
|
|
let file = s:Slash(get(g:, 'projectionist_file', ''))
|
|
|
|
let dir = FugitiveExtractGitDir(file)
|
|
|
|
let dir = FugitiveExtractGitDir(file)
|
|
|
|
let base = matchstr(file, '^fugitive://.\{-\}//\x\+')
|
|
|
|
let base = get(matchlist(file, s:dir_commit_file), 1, '')
|
|
|
|
if empty(base)
|
|
|
|
if empty(base)
|
|
|
|
let base = s:Tree(dir)
|
|
|
|
let base = s:Tree(dir)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
@@ -475,7 +549,7 @@ function! s:ProjectionistDetect() abort
|
|
|
|
if exists('+shellslash') && !&shellslash
|
|
|
|
if exists('+shellslash') && !&shellslash
|
|
|
|
let base = tr(base, '/', '\')
|
|
|
|
let base = tr(base, '/', '\')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let file = FugitiveCommonDir(dir) . '/info/projections.json'
|
|
|
|
let file = FugitiveFind('.git/info/projections.json', dir)
|
|
|
|
if filereadable(file)
|
|
|
|
if filereadable(file)
|
|
|
|
call projectionist#append(base, file)
|
|
|
|
call projectionist#append(base, file)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
@@ -529,51 +603,65 @@ exe 'command! -bang -nargs=? -range=-1 -complete=customlist,fugitive#LogComplete
|
|
|
|
exe 'command! -bang -nargs=? -range=-1 -complete=customlist,fugitive#LogComplete Gllog :exe fugitive#LogCommand(<line1>,<count>,+"<range>",<bang>0,"<mods>",<q-args>, "l")'
|
|
|
|
exe 'command! -bang -nargs=? -range=-1 -complete=customlist,fugitive#LogComplete Gllog :exe fugitive#LogCommand(<line1>,<count>,+"<range>",<bang>0,"<mods>",<q-args>, "l")'
|
|
|
|
exe 'command! -bang -nargs=? -range=-1 -complete=customlist,fugitive#LogComplete GlLog :exe fugitive#LogCommand(<line1>,<count>,+"<range>",<bang>0,"<mods>",<q-args>, "l")'
|
|
|
|
exe 'command! -bang -nargs=? -range=-1 -complete=customlist,fugitive#LogComplete GlLog :exe fugitive#LogCommand(<line1>,<count>,+"<range>",<bang>0,"<mods>",<q-args>, "l")'
|
|
|
|
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Ge exe fugitive#Open("edit<bang>", 0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Ge exe fugitive#Open("edit<bang>", 0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gedit exe fugitive#Open("edit<bang>", 0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gedit exe fugitive#Open("edit<bang>", 0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#ReadComplete Gpedit exe fugitive#Open("pedit", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#ReadComplete Gpedit exe fugitive#Open("pedit", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_other '-complete=customlist,fugitive#ReadComplete Gsplit exe fugitive#Open((<count> > 0 ? <count> : "").(<count> ? "split" : "edit"), <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_other '-complete=customlist,fugitive#ReadComplete Gsplit exe fugitive#Open((<count> > 0 ? <count> : "").(<count> ? "split" : "edit"), <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_other '-complete=customlist,fugitive#ReadComplete Gvsplit exe fugitive#Open((<count> > 0 ? <count> : "").(<count> ? "vsplit" : "edit!"), <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_other '-complete=customlist,fugitive#ReadComplete Gvsplit exe fugitive#Open((<count> > 0 ? <count> : "").(<count> ? "vsplit" : "edit!"), <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_tabs '-complete=customlist,fugitive#ReadComplete Gtabedit exe fugitive#Open((<count> >= 0 ? <count> : "")."tabedit", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1' s:addr_tabs '-complete=customlist,fugitive#ReadComplete Gtabedit exe fugitive#Open((<count> >= 0 ? <count> : "")."tabedit", <bang>0, "<mods>", <q-args>)'
|
|
|
|
|
|
|
|
|
|
|
|
if exists(':Gr') != 2
|
|
|
|
if exists(':Gr') != 2
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1 -complete=customlist,fugitive#ReadComplete Gr exe fugitive#ReadCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1 -complete=customlist,fugitive#ReadComplete Gr exe fugitive#ReadCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1 -complete=customlist,fugitive#ReadComplete Gread exe fugitive#ReadCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -range=-1 -complete=customlist,fugitive#ReadComplete Gread exe fugitive#ReadCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gdiffsplit exe fugitive#Diffsplit(1, <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gdiffsplit exe fugitive#Diffsplit(1, <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Ghdiffsplit exe fugitive#Diffsplit(0, <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Ghdiffsplit exe fugitive#Diffsplit(0, <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gvdiffsplit exe fugitive#Diffsplit(0, <bang>0, "vertical <mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gvdiffsplit exe fugitive#Diffsplit(0, <bang>0, "vertical <mods>", <q-args>)'
|
|
|
|
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gw exe fugitive#WriteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gw exe fugitive#WriteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwrite exe fugitive#WriteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwrite exe fugitive#WriteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwq exe fugitive#WqCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=* -complete=customlist,fugitive#EditComplete Gwq exe fugitive#WqCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=0 GRemove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=0 GRemove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=0 GDelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=0 GUnlink exe fugitive#UnlinkCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#CompleteObject GMove exe fugitive#MoveCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=0 GDelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#RenameComplete GRename exe fugitive#RenameCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#CompleteObject GMove exe fugitive#MoveCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
if exists(':Gremove') != 2 && get(g:, 'fugitive_legacy_commands', 1)
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#RenameComplete GRename exe fugitive#RenameCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gremove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
if exists(':Gremove') != 2 && get(g:, 'fugitive_legacy_commands', 0)
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gremove exe fugitive#RemoveCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gremove is deprecated in favor of :GRemove"|echohl NONE'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gremove is deprecated in favor of :GRemove"|echohl NONE'
|
|
|
|
|
|
|
|
elseif exists(':Gremove') != 2 && !exists('g:fugitive_legacy_commands')
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gremove echoerr ":Gremove has been removed in favor of :GRemove"'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if exists(':Gdelete') != 2 && get(g:, 'fugitive_legacy_commands', 1)
|
|
|
|
if exists(':Gdelete') != 2 && get(g:, 'fugitive_legacy_commands', 0)
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gdelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gdelete exe fugitive#DeleteCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gdelete is deprecated in favor of :GDelete"|echohl NONE'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gdelete is deprecated in favor of :GDelete"|echohl NONE'
|
|
|
|
|
|
|
|
elseif exists(':Gdelete') != 2 && !exists('g:fugitive_legacy_commands')
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=0 Gdelete echoerr ":Gremove has been removed in favor of :GRemove"'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if exists(':Gmove') != 2 && get(g:, 'fugitive_legacy_commands', 1)
|
|
|
|
if exists(':Gmove') != 2 && get(g:, 'fugitive_legacy_commands', 0)
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#CompleteObject Gmove exe fugitive#MoveCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#CompleteObject Gmove exe fugitive#MoveCommand( <line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gmove is deprecated in favor of :GMove"|echohl NONE'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Gmove is deprecated in favor of :GMove"|echohl NONE'
|
|
|
|
|
|
|
|
elseif exists(':Gmove') != 2 && !exists('g:fugitive_legacy_commands')
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=? -complete=customlist,fugitive#CompleteObject Gmove'
|
|
|
|
|
|
|
|
\ 'echoerr ":Gmove has been removed in favor of :GMove"'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if exists(':Grename') != 2 && get(g:, 'fugitive_legacy_commands', 1)
|
|
|
|
if exists(':Grename') != 2 && get(g:, 'fugitive_legacy_commands', 0)
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#RenameComplete Grename exe fugitive#RenameCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -nargs=1 -complete=customlist,fugitive#RenameComplete Grename exe fugitive#RenameCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Grename is deprecated in favor of :GRename"|echohl NONE'
|
|
|
|
\ '|echohl WarningMSG|echomsg ":Grename is deprecated in favor of :GRename"|echohl NONE'
|
|
|
|
|
|
|
|
elseif exists(':Grename') != 2 && !exists('g:fugitive_legacy_commands')
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -nargs=? -complete=customlist,fugitive#RenameComplete Grename'
|
|
|
|
|
|
|
|
\ 'echoerr ":Grename has been removed in favor of :GRename"'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -range=-1 -nargs=* -complete=customlist,fugitive#CompleteObject GBrowse exe fugitive#BrowseCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -range=-1 -nargs=* -complete=customlist,fugitive#CompleteObject GBrowse exe fugitive#BrowseCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
if exists(':Gbrowse') != 2 && get(g:, 'fugitive_legacy_commands', 1)
|
|
|
|
if exists(':Gbrowse') != 2 && get(g:, 'fugitive_legacy_commands', 0)
|
|
|
|
exe 'command! -bar -bang -range=-1 -nargs=* -complete=customlist,fugitive#CompleteObject Gbrowse exe fugitive#BrowseCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>, [<f-args>])'
|
|
|
|
exe 'command! -bar -bang -range=-1 -nargs=* -complete=customlist,fugitive#CompleteObject Gbrowse exe fugitive#BrowseCommand(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)'
|
|
|
|
\ '|if <bang>1|redraw!|endif|echohl WarningMSG|echomsg ":Gbrowse is deprecated in favor of :GBrowse"|echohl NONE'
|
|
|
|
\ '|if <bang>1|redraw!|endif|echohl WarningMSG|echomsg ":Gbrowse is deprecated in favor of :GBrowse"|echohl NONE'
|
|
|
|
|
|
|
|
elseif exists(':Gbrowse') != 2 && !exists('g:fugitive_legacy_commands')
|
|
|
|
|
|
|
|
exe 'command! -bar -bang -range=-1 -nargs=* -complete=customlist,fugitive#CompleteObject Gbrowse'
|
|
|
|
|
|
|
|
\ 'echoerr ":Gbrowse has been removed in favor of :GBrowse"'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
if v:version < 703
|
|
|
|
if v:version < 703
|
|
|
|
@@ -600,8 +688,9 @@ let g:io_fugitive = {
|
|
|
|
augroup fugitive
|
|
|
|
augroup fugitive
|
|
|
|
autocmd!
|
|
|
|
autocmd!
|
|
|
|
|
|
|
|
|
|
|
|
autocmd BufNewFile,BufReadPost * call FugitiveDetect(expand('<amatch>:p'))
|
|
|
|
autocmd BufNewFile,BufReadPost * call FugitiveDetect(+expand('<abuf>'), 0)
|
|
|
|
autocmd FileType netrw call FugitiveDetect(fnamemodify(get(b:, 'netrw_curdir', expand('<amatch>')), ':p'))
|
|
|
|
autocmd FileType netrw call FugitiveDetect(+expand('<abuf>'), 0)
|
|
|
|
|
|
|
|
autocmd BufFilePost * unlet! b:git_dir
|
|
|
|
|
|
|
|
|
|
|
|
autocmd FileType git
|
|
|
|
autocmd FileType git
|
|
|
|
\ call fugitive#MapCfile()
|
|
|
|
\ call fugitive#MapCfile()
|
|
|
|
@@ -621,26 +710,26 @@ augroup fugitive
|
|
|
|
\ endif |
|
|
|
|
\ endif |
|
|
|
|
\ let b:undo_ftplugin = get(b:, 'undo_ftplugin', 'exe') . '|setl inex= inc='
|
|
|
|
\ let b:undo_ftplugin = get(b:, 'undo_ftplugin', 'exe') . '|setl inex= inc='
|
|
|
|
|
|
|
|
|
|
|
|
autocmd BufReadCmd index{,.lock}
|
|
|
|
autocmd BufReadCmd index{,.lock} nested
|
|
|
|
\ if FugitiveIsGitDir(expand('<amatch>:p:h')) |
|
|
|
|
\ if FugitiveIsGitDir(expand('<amatch>:p:h')) |
|
|
|
|
\ let b:git_dir = s:Slash(expand('<amatch>:p:h')) |
|
|
|
|
\ let b:git_dir = s:Slash(expand('<amatch>:p:h')) |
|
|
|
|
\ exe fugitive#BufReadStatus() |
|
|
|
|
\ exe fugitive#BufReadStatus(v:cmdbang) |
|
|
|
|
\ elseif filereadable(expand('<amatch>')) |
|
|
|
|
\ elseif filereadable(expand('<amatch>')) |
|
|
|
|
\ silent doautocmd BufReadPre |
|
|
|
|
\ silent doautocmd BufReadPre |
|
|
|
|
\ keepalt read <amatch> |
|
|
|
|
\ keepalt noautocmd read <amatch> |
|
|
|
|
\ 1delete_ |
|
|
|
|
\ silent 1delete_ |
|
|
|
|
\ silent doautocmd BufReadPost |
|
|
|
|
\ silent doautocmd BufReadPost |
|
|
|
|
\ else |
|
|
|
|
\ else |
|
|
|
|
\ silent doautocmd BufNewFile |
|
|
|
|
\ silent doautocmd BufNewFile |
|
|
|
|
\ endif
|
|
|
|
\ endif
|
|
|
|
|
|
|
|
|
|
|
|
autocmd BufReadCmd fugitive://*//* exe fugitive#BufReadCmd() |
|
|
|
|
autocmd BufReadCmd fugitive://*//* nested exe fugitive#BufReadCmd() |
|
|
|
|
\ if &path =~# '^\.\%(,\|$\)' |
|
|
|
|
\ if &path =~# '^\.\%(,\|$\)' |
|
|
|
|
\ let &l:path = substitute(&path, '^\.,\=', '', '') |
|
|
|
|
\ let &l:path = substitute(&path, '^\.,\=', '', '') |
|
|
|
|
\ endif
|
|
|
|
\ endif
|
|
|
|
autocmd BufWriteCmd fugitive://*//[0-3]/* exe fugitive#BufWriteCmd()
|
|
|
|
autocmd BufWriteCmd fugitive://*//[0-3]/* nested exe fugitive#BufWriteCmd()
|
|
|
|
autocmd FileReadCmd fugitive://*//* exe fugitive#FileReadCmd()
|
|
|
|
autocmd FileReadCmd fugitive://*//* nested exe fugitive#FileReadCmd()
|
|
|
|
autocmd FileWriteCmd fugitive://*//[0-3]/* exe fugitive#FileWriteCmd()
|
|
|
|
autocmd FileWriteCmd fugitive://*//[0-3]/* nested exe fugitive#FileWriteCmd()
|
|
|
|
if exists('##SourceCmd')
|
|
|
|
if exists('##SourceCmd')
|
|
|
|
autocmd SourceCmd fugitive://*//* nested exe fugitive#SourceCmd()
|
|
|
|
autocmd SourceCmd fugitive://*//* nested exe fugitive#SourceCmd()
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
@@ -656,15 +745,12 @@ endif
|
|
|
|
|
|
|
|
|
|
|
|
let s:nowait = v:version >= 704 ? '<nowait>' : ''
|
|
|
|
let s:nowait = v:version >= 704 ? '<nowait>' : ''
|
|
|
|
|
|
|
|
|
|
|
|
function! s:Map(mode, lhs, rhs, ...) abort
|
|
|
|
function! s:Map(mode, lhs, rhs, flags) abort
|
|
|
|
for mode in split(a:mode, '\zs')
|
|
|
|
let flags = a:flags . (a:rhs =~# '<Plug>' ? '' : '<script>')
|
|
|
|
let flags = (a:0 ? a:1 : '') . (a:rhs =~# '<Plug>' ? '' : '<script>')
|
|
|
|
|
|
|
|
let head = a:lhs
|
|
|
|
let head = a:lhs
|
|
|
|
let tail = ''
|
|
|
|
let tail = ''
|
|
|
|
let keys = get(g:, mode.'remap', {})
|
|
|
|
let keys = get(g:, a:mode.'remap', {})
|
|
|
|
if type(keys) == type([])
|
|
|
|
if len(keys) && type(keys) == type({})
|
|
|
|
return
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
while !empty(head)
|
|
|
|
while !empty(head)
|
|
|
|
if has_key(keys, head)
|
|
|
|
if has_key(keys, head)
|
|
|
|
let head = keys[head]
|
|
|
|
let head = keys[head]
|
|
|
|
@@ -676,11 +762,13 @@ function! s:Map(mode, lhs, rhs, ...) abort
|
|
|
|
let tail = matchstr(head, '<[^<>]*>$\|.$') . tail
|
|
|
|
let tail = matchstr(head, '<[^<>]*>$\|.$') . tail
|
|
|
|
let head = substitute(head, '<[^<>]*>$\|.$', '', '')
|
|
|
|
let head = substitute(head, '<[^<>]*>$\|.$', '', '')
|
|
|
|
endwhile
|
|
|
|
endwhile
|
|
|
|
if flags !~# '<unique>' || empty(mapcheck(head.tail, mode))
|
|
|
|
|
|
|
|
exe mode.'map' s:nowait flags head.tail a:rhs
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
if empty(mapcheck(head.tail, a:mode))
|
|
|
|
|
|
|
|
exe a:mode.'map' s:nowait flags head.tail a:rhs
|
|
|
|
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
call s:Map('c', '<C-R><C-G>', 'fnameescape(fugitive#Object(@%))', '<expr>')
|
|
|
|
call s:Map('c', '<C-R><C-G>', 'fnameescape(fugitive#Object(@%))', '<expr>')
|
|
|
|
call s:Map('n', 'y<C-G>', ':<C-U>call setreg(v:register, fugitive#Object(@%))<CR>', '<silent>')
|
|
|
|
call s:Map('n', 'y<C-G>', ':<C-U>call setreg(v:register, fugitive#Object(@%))<CR>', '<silent>')
|
|
|
|
|
|
|
|
nmap <script><silent> <Plug>fugitive:y<C-G> :<C-U>call setreg(v:register, fugitive#Object(@%))<CR>
|
|
|
|
|
|
|
|
nmap <script> <Plug>fugitive: <Nop>
|
|
|
|
|