diff options
| author | Artur Tagisow <5359825+sethidden@users.noreply.github.com> | 2022-03-13 21:31:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-13 13:31:27 -0700 |
| commit | 8ed845d6a544bd37903f94e1c256e1bd23ba3836 (patch) | |
| tree | 89675577424f108d2d97ba837b190dba08f3ce15 /lua | |
| parent | fix(lspstop): make LspStop behave as described in the docs (#1764) (diff) | |
| download | nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar.gz nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar.bz2 nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar.lz nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar.xz nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.tar.zst nvim-lspconfig-8ed845d6a544bd37903f94e1c256e1bd23ba3836.zip | |
chore(volar): @volar/server -> @volar/vue-language-server (#1770)
See https://github.com/johnsoncodehk/volar/issues/876
Add new languageFeatures.implementation = true option
as per CHANGELOG.md in volar repo for version 0.33
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/volar.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/lspconfig/server_configurations/volar.lua b/lua/lspconfig/server_configurations/volar.lua index 21d65beb..acc6b808 100644 --- a/lua/lspconfig/server_configurations/volar.lua +++ b/lua/lspconfig/server_configurations/volar.lua @@ -12,6 +12,7 @@ local volar_init_options = { serverPath = '', }, languageFeatures = { + implementation = true, -- not supported - https://github.com/neovim/neovim/pull/14122 semanticTokens = false, references = true, @@ -46,7 +47,7 @@ local volar_init_options = { }, } -local bin_name = 'volar-server' +local bin_name = 'vue-language-server' local cmd = { bin_name, '--stdio' } if vim.fn.has 'win32' == 1 then |
