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