Skip to content

Commit

Permalink
Use echo instead of echom.
Browse files Browse the repository at this point in the history
No need to save the warnings in the messages list.
  • Loading branch information
airblade committed Mar 10, 2015
1 parent 1be63d7 commit 11b6813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/gitgutter/utility.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let s:exit_code = 0

function! gitgutter#utility#warn(message)
echohl WarningMsg
echomsg 'vim-gitgutter: ' . a:message
echo 'vim-gitgutter: ' . a:message
echohl None
let b:warningmsg = a:message
endfunction
Expand Down

0 comments on commit 11b6813

Please sign in to comment.