From 6c0649ed9b38ebe58656f052fed9be838edcd4c4 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 12 Aug 2011 17:50:58 -0400 Subject: [PATCH] Fix redraw issue after :Gbrowse --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 8b4980c..d5df668 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -1549,7 +1549,7 @@ function! s:Browse(bang,line1,count,...) abort let @* = url return 'echomsg '.string(url) else - return 'echomsg '.string(url).'|silent Git web--browse '.shellescape(url,1) + return 'echomsg '.string(url).'|call fugitive#buffer().repo().git_chomp("web--browse",'.string(url).')' endif catch /^fugitive:/ return 'echoerr v:errmsg'