Use echo instead of echom.

No need to save the warnings in the messages list.
This commit is contained in:
Andy Stewart
2015-03-10 12:10:32 +01:00
parent 1be63d780c
commit 11b6813b94

View File

@@ -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