diff options
author | Ivor Peles <ivorpeles@gmail.com> | 2020-10-06 04:00:45 -0400 |
---|---|---|
committer | Ivor Peles <ivorpeles@gmail.com> | 2020-11-21 19:24:20 -0500 |
commit | ae86d10e48ae27e08665502772886016c3a3aa3b (patch) | |
tree | 9901df91cc9970c1aafb07c818e4dae214c9b5ea /autoload | |
parent | 64471e6ea88cc45dcd33e3a0ca5ee857797985e3 (diff) | |
download | ale-ae86d10e48ae27e08665502772886016c3a3aa3b.zip |
Set default value for python_isort_auto_pipenv
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/isort.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autoload/ale/fixers/isort.vim b/autoload/ale/fixers/isort.vim index 926822f2..13825f7e 100644 --- a/autoload/ale/fixers/isort.vim +++ b/autoload/ale/fixers/isort.vim @@ -2,8 +2,9 @@ " Description: Fixing Python imports with isort. call ale#Set('python_isort_executable', 'isort') -call ale#Set('python_isort_options', '') call ale#Set('python_isort_use_global', get(g:, 'ale_use_global_executables', 0)) +call ale#Set('python_isort_options', '') +call ale#Set('python_isort_auto_pipenv', 0) function! ale#fixers#isort#GetExecutable(buffer) abort if (ale#Var(a:buffer, 'python_auto_pipenv') || ale#Var(a:buffer, 'python_isort_auto_pipenv')) |