We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f981eed commit b750bfaCopy full SHA for b750bfa
1 file changed
plugin/gv.vim
@@ -251,8 +251,10 @@ function! s:list(fugitive_repo, log_opts)
251
let git_log_cmd = FugitiveShellCommand(git_args, a:fugitive_repo)
252
253
let repo_short_name = fnamemodify(a:fugitive_repo.tree(), ':t')
254
- let b:gv_opts = a:log_opts
255
- let b:gv_repo_short_name = repo_short_name
+ let b:gv = {
+ \ 'opts': a:log_opts,
256
+ \ 'repo_short_name': repo_short_name,
257
+ \ }
258
let bufname = repo_short_name.' '.join(a:log_opts)
259
silent exe (bufexists(bufname) ? 'buffer' : 'file') fnameescape(bufname)
260
0 commit comments