aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/volar.lua
diff options
context:
space:
mode:
authorJohnson Chu <johnsoncodehk@gmail.com>2022-12-21 10:13:48 +0800
committerGitHub <noreply@github.com>2022-12-21 10:13:48 +0800
commitd8a4493cf8187bc8caae0cca8f1fc812e48033cb (patch)
tree419d10b945c77449a9cf28e01c3efa0ebefde4a2 /lua/lspconfig/server_configurations/volar.lua
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar.gz
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar.bz2
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar.lz
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar.xz
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.tar.zst
nvim-lspconfig-d8a4493cf8187bc8caae0cca8f1fc812e48033cb.zip
chore: remove `languageFeatures`, `documentFeatures` (#2336)
Diffstat (limited to 'lua/lspconfig/server_configurations/volar.lua')
-rw-r--r--lua/lspconfig/server_configurations/volar.lua34
1 files changed, 0 insertions, 34 deletions
diff --git a/lua/lspconfig/server_configurations/volar.lua b/lua/lspconfig/server_configurations/volar.lua
index a7f38ade..eddcaf0f 100644
--- a/lua/lspconfig/server_configurations/volar.lua
+++ b/lua/lspconfig/server_configurations/volar.lua
@@ -10,40 +10,6 @@ local volar_init_options = {
typescript = {
tsdk = '',
},
- languageFeatures = {
- implementation = true,
- -- not supported - https://github.com/neovim/neovim/pull/14122
- semanticTokens = false,
- references = true,
- definition = true,
- typeDefinition = true,
- callHierarchy = true,
- hover = true,
- rename = true,
- renameFileRefactoring = true,
- signatureHelp = true,
- codeAction = true,
- completion = {
- defaultTagNameCase = 'both',
- defaultAttrNameCase = 'kebabCase',
- },
- schemaRequestService = true,
- documentHighlight = true,
- documentLink = true,
- codeLens = true,
- diagnostics = true,
- },
- documentFeatures = {
- -- not supported - https://github.com/neovim/neovim/pull/13654
- documentColor = false,
- selectionRange = true,
- foldingRange = true,
- linkedEditingRange = true,
- documentSymbol = true,
- documentFormatting = {
- defaultPrintWidth = 100,
- },
- },
}
local bin_name = 'vue-language-server'