Fix #1938 - Set a default value for an undefined variable

This commit is contained in:
w0rp 2018-09-20 08:28:51 +01:00
parent 169a6e26b2
commit 1900b76005
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
1 changed files with 3 additions and 0 deletions

View File

@ -133,6 +133,9 @@ let g:ale_history_log_output = get(g:, 'ale_history_log_output', 1)
" Enable automatic completion with LSP servers and tsserver
let g:ale_completion_enabled = get(g:, 'ale_completion_enabled', 0)
" Enable automatic detection of pipenv for Python linters.
let g:ale_python_auto_pipenv = get(g:, 'ale_python_auto_pipenv', 0)
if g:ale_set_balloons
call ale#balloon#Enable()
endif