mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-10 20:43:46 -05:00
Fix jump for "# Your branch ... 'localbranch'"
This commit is contained in:
@@ -1304,7 +1304,7 @@ function! s:GF(mode) abort
|
||||
let file = 'refs/heads/'.getline('.')[12:]
|
||||
return s:Edit(a:mode,file)
|
||||
elseif getline('.') =~# "^# Your branch .*'"
|
||||
let file = 'refs/remotes/'.matchstr(getline('.'),"'\\zs\\S\\+\\ze'")
|
||||
let file = matchstr(getline('.'),"'\\zs\\S\\+\\ze'")
|
||||
return s:Edit(a:mode,file)
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user