summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorBBOOXX <BBOOXX@users.noreply.github.com>2022-09-11 10:07:01 +0800
committerGitHub <noreply@github.com>2022-09-11 11:07:01 +0900
commit77fcf9b2c270dd2c97fd175dbabed79a84114690 (patch)
treeeae7f831c76f9bdd6c4a113bf1f761709d538faf /ale_linters
parent1458b8749c28b607ee5b3112a9ef1dbfacb10578 (diff)
downloadale-77fcf9b2c270dd2c97fd175dbabed79a84114690.zip
chore(volar): update volar executable name (#4308)
see: johnsoncodehk/volar#876 see: johnsoncodehk/volar/blob/master/packages/vue-language-server/package.json#L11
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/vue/volar.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/vue/volar.vim b/ale_linters/vue/volar.vim
index 360b1aa5..bb41b883 100644
--- a/ale_linters/vue/volar.vim
+++ b/ale_linters/vue/volar.vim
@@ -2,7 +2,7 @@
" Description: Volar Language Server integration for ALE adopted from
" nvim-lspconfig and volar/packages/shared/src/types.ts
-call ale#Set('vue_volar_executable', 'volar-server')
+call ale#Set('vue_volar_executable', 'vue-language-server')
call ale#Set('vue_volar_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#Set('vue_volar_init_options', {
\ 'documentFeatures': {
@@ -73,7 +73,7 @@ call ale#linter#Define('vue', {
\ 'name': 'volar',
\ 'language': 'vue',
\ 'lsp': 'stdio',
-\ 'executable': {b -> ale#path#FindExecutable(b, 'vue_volar', ['node_modules/.bin/volar-server'])},
+\ 'executable': {b -> ale#path#FindExecutable(b, 'vue_volar', ['node_modules/.bin/vue-language-server'])},
\ 'command': '%e --stdio',
\ 'project_root': function('ale_linters#vue#volar#GetProjectRoot'),
\ 'initialization_options': function('ale_linters#vue#volar#GetInitializationOptions'),