#1621 - Tolerate SetOptions calls when ALE is loaded in a weird way

This commit is contained in:
w0rp
2018-06-01 21:03:22 +01:00
parent fae9167083
commit 014d27c882
2 changed files with 13 additions and 1 deletions

View File

@@ -23,7 +23,8 @@ function! s:CmpPatterns(left_item, right_item) abort
endfunction
function! ale#pattern_options#SetOptions(buffer) abort
if !g:ale_pattern_options_enabled || empty(g:ale_pattern_options)
if !get(g:, 'ale_pattern_options_enabled', 0)
\|| empty(get(g:, 'ale_pattern_options', 0))
return
endif