Skip to content

Commit

Permalink
silent! the BalloonExpr
Browse files Browse the repository at this point in the history
Otherwise hovering over a string and lots of other stuff will show
errors.
  • Loading branch information
arp242 committed Feb 26, 2018
1 parent 1020b57 commit e709712
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/go/debug.vim
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,8 @@ function! s:eval(arg) abort
endfunction

function! go#debug#BalloonExpr() abort
return s:eval(v:beval_text)
silent! let l:v = s:eval(v:beval_text)
return l:v
endfunction

function! go#debug#Print(arg) abort
Expand Down

0 comments on commit e709712

Please sign in to comment.