diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-15 12:00:08 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-15 12:00:13 +0000 |
commit | e12e5c912cd42abe4aebf54c21f57f5a8c735dc6 (patch) | |
tree | 8420bc7774e313ae2f3990d4906ab17cbbe05e9e /plugin | |
parent | 38bc4896042eda8eeb7ca7fbff70520d58925ced (diff) | |
download | ale-e12e5c912cd42abe4aebf54c21f57f5a8c735dc6.zip |
Complain about stray echo lines in the codebase
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 31c3377e..d9710fa2 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -24,8 +24,8 @@ endif if !s:has_features " Only output a warning if editing some special files. if index(['', 'gitcommit'], &filetype) == -1 - echoerr 'ALE requires NeoVim >= 0.1.5 or Vim 8 with +timers +job +channel' - echoerr 'Please update your editor appropriately.' + execute 'echoerr ''ALE requires NeoVim >= 0.1.5 or Vim 8 with +timers +job +channel''' + execute 'echoerr ''Please update your editor appropriately.''' endif " Stop here, as it won't work. |