From d8a4493cf8187bc8caae0cca8f1fc812e48033cb Mon Sep 17 00:00:00 2001 From: Johnson Chu Date: Wed, 21 Dec 2022 10:13:48 +0800 Subject: [PATCH] chore: remove `languageFeatures`, `documentFeatures` (#2336) --- lua/lspconfig/server_configurations/volar.lua | 34 ------------------- 1 file changed, 34 deletions(-) diff --git a/lua/lspconfig/server_configurations/volar.lua b/lua/lspconfig/server_configurations/volar.lua index a7f38ade88..eddcaf0f82 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'