Don't browse to blob for empty buffer

This commit is contained in:
Tim Pope
2019-08-31 22:22:50 -04:00
parent b97a9abe29
commit c13e0e1afd

View File

@@ -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'