summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorIldar Akhmetgaleev <akhilman@gmail.com>2019-10-12 16:45:12 +0700
committerIldar Akhmetgaleev <akhilman@gmail.com>2019-10-12 16:45:12 +0700
commit31d6f72abf5c025374a60675e7db8d8c97c9f775 (patch)
treecd19015fceead49bfea688e08a7deccebbaf5e56 /plugin
parenta486aa1d24294c5b14c8b2763a3b5ffdc39d0739 (diff)
downloadale-31d6f72abf5c025374a60675e7db8d8c97c9f775.zip
Add option to show hover messages in preview.
Add new option 'ale_hover_to_preview' to show hover messages in preview window.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 1912a9c0..8fea3bb4 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -125,6 +125,9 @@ let g:ale_close_preview_on_insert = get(g:, 'ale_close_preview_on_insert', 0)
" This flag can be set to 0 to disable balloon support.
let g:ale_set_balloons = get(g:, 'ale_set_balloons', has('balloon_eval') && has('gui_running'))
+" Use preview window for hover messages.
+let g:ale_hover_to_preview = get(g:, 'ale_hover_to_preview', 0)
+
" This flag can be set to 0 to disable warnings for trailing whitespace
let g:ale_warn_about_trailing_whitespace = get(g:, 'ale_warn_about_trailing_whitespace', 1)
" This flag can be set to 0 to disable warnings for trailing blank lines