Skip to content

Commit 1fff637

Browse files
committed
Use FugitiveWorkTree() to find the git root
Fix #1586
1 parent 245eaf8 commit 1fff637

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

autoload/fzf/vim.vim

+3
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,9 @@ endfunction
715715
" ------------------------------------------------------------------
716716

717717
function! s:get_git_root(dir)
718+
if empty(a:dir) && exists('*FugitiveWorkTree')
719+
return FugitiveWorkTree()
720+
endif
718721
let dir = len(a:dir) ? a:dir : substitute(split(expand('%:p:h'), '[/\\]\.git\([/\\]\|$\)')[0], '^fugitive://', '', '')
719722
let root = systemlist('git -C ' . shellescape(dir) . ' rev-parse --show-toplevel')[0]
720723
return v:shell_error ? '' : (len(a:dir) ? fnamemodify(a:dir, ':p') : root)

0 commit comments

Comments
 (0)