summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-10-12 23:25:41 +0100
committerw0rp <devw0rp@gmail.com>2017-10-12 23:25:41 +0100
commit663fe75d0faaf038e6f5e67a97940bf10990c0f0 (patch)
treeabcfcd211a84f677955fe906c1e41f90f3cb029b /plugin
parente71c4a8bea25e6998d4d852677790ad6bd5a7e68 (diff)
downloadale-663fe75d0faaf038e6f5e67a97940bf10990c0f0.zip
#965 - Make the cursor echo delay configurable
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 2f188d2d..9fac75ee 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -155,6 +155,8 @@ let g:ale_echo_msg_warning_str = get(g:, 'ale_echo_msg_warning_str', 'Warning')
" This flag can be set to 0 to disable echoing when the cursor moves.
let g:ale_echo_cursor = get(g:, 'ale_echo_cursor', 1)
+" Controls the milliseconds delay before echoing a message.
+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'))