From 2be52ed039cd15fd9ee9d2515b87d80bcae769a1 Mon Sep 17 00:00:00 2001 From: ZyX-I Date: Fri, 21 Dec 2012 23:03:50 +0400 Subject: [PATCH] Purge out :echoe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `:echoe` is unstable: unless it is already in `:try`…`:catch` block you never know for sure whether or not it will break execution. Thus the only valid use for `:echoe` is try echoe 'Msg' endtry : rough equivalent to `:throw` (throws, but with different message). As this is probably not the thing you want to do I changed it to use `:echomsg`. --- powerline/ext/vim/powerline.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/powerline/ext/vim/powerline.vim b/powerline/ext/vim/powerline.vim index 875ac243..0d4e0b02 100644 --- a/powerline/ext/vim/powerline.vim +++ b/powerline/ext/vim/powerline.vim @@ -1,5 +1,7 @@ if ! has('python') - echoe 'You need vim compiled with Python 2 support for Powerline to work. Please consult the documentation for more details.' + echohl ErrorMsg + echomsg 'You need vim compiled with Python 2 support for Powerline to work. Please consult the documentation for more details.' + echohl None finish endif