From 57f0454a557a1bb254fe63c583c53088b619c040 Mon Sep 17 00:00:00 2001 From: rhysd Date: Wed, 9 May 2018 23:08:39 +0900 Subject: [PATCH] Improve g:ale_set_balloons default value --- doc/ale.txt | 3 ++- plugin/ale.vim | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/ale.txt b/doc/ale.txt index 9068644..fa5e30d 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -1350,7 +1350,8 @@ g:ale_set_balloons *g:ale_set_balloons* *b:ale_set_balloons* Type: |Number| - Default: `has('balloon_eval')` + Default: `has('balloon_eval') && has('gui_running') ||` + `has('balloon_eval_term') && !has('gui_running')` When this option is set to `1`, balloon messages will be displayed for problems. Problems nearest to the cursor on the line the cursor is over will diff --git a/plugin/ale.vim b/plugin/ale.vim index d59ffd6..a49bf68 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -174,7 +174,10 @@ let g:ale_echo_cursor = get(g:, 'ale_echo_cursor', 1) let g:ale_echo_delay = get(g:, 'ale_echo_delay', 10) " This flag can be set to 0 to disable balloon support. -call ale#Set('set_balloons', has('balloon_eval')) +call ale#Set('set_balloons', +\ has('balloon_eval') && has('gui_running') || +\ has('balloon_eval_term') && !has('gui_running') +\) " A deprecated setting for ale#statusline#Status() " See :help ale#statusline#Count() for getting status reports.