[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")
require('lspconfig').matlab_ls.setup(
vim.lsp.config.matlab_ls =
{
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,
settings = {
MATLAB = {
@ -13,4 +13,5 @@ require('lspconfig').matlab_ls.setup(
}
}
}
)
vim.lsp.enable({'matlab_ls'})