diff --git a/home/programs/neovim/configuration/ale_linters/typoscript/typoscript_lint.vim b/home/programs/neovim/configuration/ale_linters/typoscript/typoscript_lint.vim index 7dfe337..1f00142 100644 --- a/home/programs/neovim/configuration/ale_linters/typoscript/typoscript_lint.vim +++ b/home/programs/neovim/configuration/ale_linters/typoscript/typoscript_lint.vim @@ -3,7 +3,7 @@ " PR is open at: https://github.com/dense-analysis/ale/pull/4673 call ale#Set('typoscript_typoscript_lint_executable', 'typoscript-lint') -call ale#Set('typoscript_typoscript_lint_executable_use_global', get(g:, 'ale_use_global_executables', 0)) +call ale#Set('typoscript_typoscript_lint_use_global', get(g:, 'ale_use_global_executables', 0)) function! ale_linters#typoscript#typoscript_lint#Handle(buffer, lines) abort let l:output = [] @@ -29,7 +29,7 @@ endfunction call ale#linter#Define('typoscript', { \ 'name': 'typoscript_lint', -\ 'executable': {b -> ale#path#FindExecutable(b, 'typoscript_typoscript_lint_executable', [ +\ 'executable': {b -> ale#path#FindExecutable(b, 'typoscript_typoscript_lint', [ \ 'vendor/bin/typoscript-lint', \ 'typoscript-lint' \ ])},