Fix #426 check for g:ale_emit_conflict_warnings existence

This commit is contained in:
Jan Clarin 2017-03-30 00:55:53 -06:00
parent 2a88b60ff1
commit f88f59afb8
1 changed files with 3 additions and 1 deletions

View File

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