#965 - Make the cursor echo delay configurable

This commit is contained in:
w0rp 2017-10-12 23:25:41 +01:00
parent e71c4a8bea
commit 663fe75d0f
3 changed files with 20 additions and 1 deletions

View file

@ -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'))