diff options
author | Dalius Dobravolskas <dalius.dobravolskas@gmail.com> | 2022-05-02 13:42:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 19:42:24 +0900 |
commit | 56399106fcf9d80d476307576bc307e67f0167e2 (patch) | |
tree | 0a66e044096af24c8b685a0d9a5c619d6f57bbca /ale_linters/json | |
parent | 34892186e44b21356c84e1c2e019f96a304c3edc (diff) | |
download | ale-56399106fcf9d80d476307576bc307e67f0167e2.zip |
VSCode LSPs for CSS, HTML and JSON (#4175)
Switched to `vscode-langservers-extracted` as it is the one most
up-to-date.
Diffstat (limited to 'ale_linters/json')
-rw-r--r-- | ale_linters/json/vscodejson.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/json/vscodejson.vim b/ale_linters/json/vscodejson.vim index 91988923..dcaee010 100644 --- a/ale_linters/json/vscodejson.vim +++ b/ale_linters/json/vscodejson.vim @@ -1,5 +1,5 @@ " Author: Dalius Dobravolskas <dalius.dobravolskas@gmail.com> -" Description: VSCode json languageserver +" Description: VSCode json language server function! ale_linters#json#vscodejson#GetProjectRoot(buffer) abort let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git') @@ -10,7 +10,7 @@ endfunction call ale#linter#Define('json', { \ 'name': 'vscodejson', \ 'lsp': 'stdio', -\ 'executable': 'vscode-json-languageserver', +\ 'executable': 'vscode-json-language-server', \ 'command': '%e --stdio', \ 'project_root': function('ale_linters#json#vscodejson#GetProjectRoot'), \}) |