aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorglepnir <glephunter@gmail.com>2025-04-22 21:16:05 +0800
committerGitHub <noreply@github.com>2025-04-22 21:16:05 +0800
commitc1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4 (patch)
treedfc6c687ea393cd8484b79e53290364f1795a669
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar.gz
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar.bz2
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar.lz
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar.xz
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.tar.zst
nvim-lspconfig-c1269c3d2c4c64b8e52b66390ea6a0b2797ed7c4.zip
fix(mdx_analyzer): remove invalid field and update brief (#3760)
-rw-r--r--lsp/mdx_analyzer.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/lsp/mdx_analyzer.lua b/lsp/mdx_analyzer.lua
index 89413fd2..0eb5a008 100644
--- a/lsp/mdx_analyzer.lua
+++ b/lsp/mdx_analyzer.lua
@@ -1,7 +1,7 @@
---@brief
----https://github.com/mdx-js/mdx-analyzer
+--- https://github.com/mdx-js/mdx-analyzer
---
----`mdx-analyzer`, a language server for MDX
+--- `mdx-analyzer`, a language server for MDX
local function get_typescript_server_path(root_dir)
local project_root = vim.fs.dirname(vim.fs.find('node_modules', { path = root_dir, upward = true })[1])
@@ -12,7 +12,6 @@ return {
cmd = { 'mdx-language-server', '--stdio' },
filetypes = { 'mdx' },
root_markers = { 'package.json' },
- single_file_support = true,
settings = {},
init_options = {
typescript = {},