From b754bc2031f21a532c083dd0d072ba373bbe3a37 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sun, 13 Nov 2016 19:02:27 -0500 Subject: [PATCH] Fix mismatched quotes References https://github.com/tpope/vim-fugitive/issues/844 --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 1f26ec3..576dda1 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -2321,7 +2321,7 @@ function! s:Browse(bang,line1,count,...) abort if empty(url) && raw ==# '.' call s:throw("Instaweb failed to start") elseif empty(url) - call s:throw('"'.remote."' is not a supported remote") + call s:throw("'".remote."' is not a supported remote") endif let url = s:gsub(url, '[ <>]', '\="%".printf("%02X",char2nr(submatch(0)))')