summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-12 23:19:26 +0000
committerw0rp <devw0rp@gmail.com>2017-11-12 23:19:26 +0000
commit70623ca8a7ffadac0d282b4737dbb7322659c592 (patch)
treedb71facbb77c0bbb67ae2b73033b62f67d0acec5 /plugin
parent7d056b0839a6d716533bce73cd72555aec6f5837 (diff)
downloadale-70623ca8a7ffadac0d282b4737dbb7322659c592.zip
Add support for showing Info severities in echoed messages
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 0b5ac78e..c67e1de7 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -155,6 +155,7 @@ let g:ale_echo_msg_format = get(g:, 'ale_echo_msg_format', '%s')
" Strings used for severity in the echoed message
let g:ale_echo_msg_error_str = get(g:, 'ale_echo_msg_error_str', 'Error')
+let g:ale_echo_msg_info_str = get(g:, 'ale_echo_msg_info_str', 'Info')
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.