[2025-04-04] Update matlab_ls for v0.11

This commit is contained in:
Andrew Conlin 2025-04-04 14:33:35 +01:00
parent 9ab155e3cf
commit 7eee1b668c

View File

@ -1,8 +1,8 @@
local util = require("lspconfig.util") vim.lsp.config.matlab_ls =
require('lspconfig').matlab_ls.setup(
{ {
cmd = { "node", os.getenv("HOME") .. "/MATLAB-language-server/out/index.js", "--stdio" }, cmd = { "node", os.getenv("HOME") .. "/MATLAB-language-server/out/index.js", "--stdio" },
root_dir = util.root_pattern('mw_anchor'), root_markers = { 'mw_anchor' },
filetypes = { 'matlab' },
single_file_support = true, single_file_support = true,
settings = { settings = {
MATLAB = { MATLAB = {
@ -13,4 +13,5 @@ require('lspconfig').matlab_ls.setup(
} }
} }
} }
)
vim.lsp.enable({'matlab_ls'})