blob: f797541c6d693c8de42b22e5e4589443ac7e2d93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---@brief
---
--- Renamed to [vue_ls](#vue_ls)
---@type vim.lsp.Config
return vim.tbl_extend('force', vim.lsp.config.vue_ls, {
on_init = function(...)
vim.deprecate('volar', 'vue_ls', '3.0.0', 'nvim-lspconfig', false)
if vim.lsp.config.vue_ls.on_init then
vim.lsp.config.vue_ls.on_init(...)
end
end,
})
|