This commit is contained in:
Belal Elsabbagh
2025-05-19 10:28:59 +03:00
parent 4a30f4e705
commit 12fc965843
7 changed files with 308 additions and 8 deletions

View File

@@ -0,0 +1,38 @@
local function migrate_to_svelte_5()
local clients = vim.lsp.get_clients {
bufnr = 0,
name = 'svelte',
}
for _, client in ipairs(clients) do
client:exec_cmd {
command = 'migrate_to_svelte_5',
arguments = { vim.uri_from_bufnr(0) },
}
end
end
return {
default_config = {
cmd = { 'svelteserver', '--stdio' },
filetypes = { 'svelte' },
root_dir = { 'node_modules', '.git', 'package.json' },
},
commands = {
MigrateToSvelte5 = {
migrate_to_svelte_5,
description = 'Migrate Component to Svelte 5 Syntax',
},
},
docs = {
description = [[
https://github.com/sveltejs/language-tools/tree/master/packages/language-server
Note: assuming that [ts_ls](#ts_ls) is setup, full JavaScript/TypeScript support (find references, rename, etc of symbols in Svelte files when working in JS/TS files) requires per-project installation and configuration of [typescript-svelte-plugin](https://github.com/sveltejs/language-tools/tree/master/packages/typescript-plugin#usage).
`svelte-language-server` can be installed via `npm`:
```sh
npm install -g svelte-language-server
```
]],
},
}