Skip to content

Commit

Permalink
util: do not clear the screen
Browse files Browse the repository at this point in the history
  • Loading branch information
fatih committed Aug 2, 2016
1 parent 99d5bf8 commit ecac655
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions autoload/go/util.vim
Original file line number Diff line number Diff line change
Expand Up @@ -288,19 +288,19 @@ endfunction
" simplify the following functions

function! go#util#EchoSuccess(msg)
redraw! | echon "vim-go: " | echohl Function | echon a:msg | echohl None
redraw | echon "vim-go: " | echohl Function | echon a:msg | echohl None
endfunction

function! go#util#EchoError(msg)
redraw! | echon "vim-go: " | echohl ErrorMsg | echon a:msg | echohl None
redraw | echon "vim-go: " | echohl ErrorMsg | echon a:msg | echohl None
endfunction

function! go#util#EchoWarning(msg)
redraw! | echon "vim-go: " | echohl WarningMsg | echon a:msg | echohl None
redraw | echon "vim-go: " | echohl WarningMsg | echon a:msg | echohl None
endfunction

function! go#util#EchoProgress(msg)
redraw! | echon "vim-go: " | echohl Identifier | echon a:msg | echohl None
redraw | echon "vim-go: " | echohl Identifier | echon a:msg | echohl None
endfunction

" vim: sw=2 ts=2 et

0 comments on commit ecac655

Please sign in to comment.