summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-09-20 08:28:51 +0100
committerw0rp <devw0rp@gmail.com>2018-09-20 08:28:51 +0100
commit1900b760059d471229864fb16346425d7032430b (patch)
tree0d8999bab935fdd66475caaf822e4df0787e8230 /plugin
parent169a6e26b2ca63ab0f2f5bb3d2176ff0a2f68bc3 (diff)
downloadale-1900b760059d471229864fb16346425d7032430b.zip
Fix #1938 - Set a default value for an undefined variable
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 888120fe..41da7c74 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -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