Skip to content

Commit 65ef9bc

Browse files
committed
show output of :GoRun
Fixes regression introduced in fatih#700, as documented on fatih#739 and fatih#743.
1 parent 5f64a57 commit 65ef9bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/go/cmd.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ function! go#cmd#Run(bang, ...)
121121
if g:go_dispatch_enabled && exists(':Make') == 2
122122
silent! exe 'Make'
123123
elseif l:listtype == "locationlist"
124-
silent! exe 'lmake!'
124+
exe 'lmake!'
125125
else
126-
silent! exe 'make!'
126+
exe 'make!'
127127
endif
128128

129129
let items = go#list#Get(l:listtype)

0 commit comments

Comments
 (0)