From 7eee1b668c37b63072bd095b4fb3b1b830b90c92 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Fri, 4 Apr 2025 14:33:35 +0100 Subject: [PATCH] [2025-04-04] Update matlab_ls for v0.11 --- nvim/lua/plugins/matlab_ls.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nvim/lua/plugins/matlab_ls.lua b/nvim/lua/plugins/matlab_ls.lua index af6a2fa..7b903a9 100644 --- a/nvim/lua/plugins/matlab_ls.lua +++ b/nvim/lua/plugins/matlab_ls.lua @@ -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'})