mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-15 14:53:51 -05:00
Don't browse to blob for empty buffer
This commit is contained in:
@@ -5182,10 +5182,10 @@ function! s:BrowseCommand(line1, line2, range, count, bang, mods, reg, arg, args
|
||||
let path = '.git/' . full[strlen(dir)+1:-1]
|
||||
let type = ''
|
||||
else
|
||||
let path = full[strlen(s:Tree(dir))+1:-1]
|
||||
let path = fugitive#Path(full, '/')[1:-1]
|
||||
if path =~# '^\.git/'
|
||||
let type = ''
|
||||
elseif isdirectory(full)
|
||||
elseif isdirectory(full) || empty(path)
|
||||
let type = 'tree'
|
||||
else
|
||||
let type = 'blob'
|
||||
|
||||
Reference in New Issue
Block a user