diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-08-24 10:31:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 10:31:18 +0100 |
commit | 1f26fc40134dd7ee6bc85702099af60421f234de (patch) | |
tree | e44a20b91f29097c9451fd2d4f926d632f00196b /autoload | |
parent | 707b539969df55d9372135d8b15771693699d5ac (diff) | |
parent | f526fc68d11788bd45d1c78112168b855e923c04 (diff) | |
download | ale-1f26fc40134dd7ee6bc85702099af60421f234de.zip |
Merge pull request #1841 from dabbeg/fix-importjs-fixer
importjs fixer not reading correct executable variable name
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/importjs.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/fixers/importjs.vim b/autoload/ale/fixers/importjs.vim index e8eedb12..50d3d74e 100644 --- a/autoload/ale/fixers/importjs.vim +++ b/autoload/ale/fixers/importjs.vim @@ -1,7 +1,7 @@ " Author: Jeff Willette <jrwillette88@gmail.com> " Description: Integration of importjs with ALE. -call ale#Set('js_importjs_executable', 'importjs') +call ale#Set('javascript_importjs_executable', 'importjs') function! ale#fixers#importjs#ProcessOutput(buffer, output) abort let l:result = ale#util#FuzzyJSONDecode(a:output, []) @@ -9,7 +9,7 @@ function! ale#fixers#importjs#ProcessOutput(buffer, output) abort endfunction function! ale#fixers#importjs#Fix(buffer) abort - let l:executable = ale#Var(a:buffer, 'js_importjs_executable') + let l:executable = ale#Var(a:buffer, 'javascript_importjs_executable') if !executable(l:executable) return 0 |