diff options
Diffstat (limited to 'after')
-rw-r--r-- | after/plugin/ale.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/after/plugin/ale.vim b/after/plugin/ale.vim index 463b65a5..8963c822 100644 --- a/after/plugin/ale.vim +++ b/after/plugin/ale.vim @@ -4,7 +4,9 @@ endif let g:loaded_ale_after = 1 -if !g:ale_emit_conflict_warnings +" Check if the flag is available and set to 0 to disable checking for and +" emitting conflicting plugin warnings. +if exists('g:ale_emit_conflict_warnings') && !g:ale_emit_conflict_warnings finish endif |