From 6cd8ff77f03b08ae133e35fabd87122a50231c36 Mon Sep 17 00:00:00 2001 From: Rick Date: Thu, 13 Sep 2018 22:51:08 +0800 Subject: [PATCH] Fix undefined variable --- autoload/fugitive.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 86505e5..d7621a6 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -3405,6 +3405,7 @@ function! s:Browse(bang,line1,count,...) abort \ 'line1': line1, \ 'line2': line2} + let url = '' for Handler in get(g:, 'fugitive_browse_handlers', []) let url = call(Handler, [copy(opts)]) if !empty(url)