Fix #1938 - Set a default value for an undefined variable
This commit is contained in:
parent
169a6e26b2
commit
1900b76005
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Reference in a new issue