diff options
| author | Raphael <glepnir@neovim.pro> | 2022-08-26 11:12:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-26 11:12:52 +0800 |
| commit | 520c609210029e901b433c49e7c1e00dd247b47a (patch) | |
| tree | 4328e826f392e975633799cff76d3987acd30962 /lua/lspconfig.lua | |
| parent | fix: add lsplog command (#2088) (diff) | |
| download | nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar.gz nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar.bz2 nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar.lz nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar.xz nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.tar.zst nvim-lspconfig-520c609210029e901b433c49e7c1e00dd247b47a.zip | |
fix: lspstart should be work without arg (#2090)
Diffstat (limited to 'lua/lspconfig.lua')
| -rw-r--r-- | lua/lspconfig.lua | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lua/lspconfig.lua b/lua/lspconfig.lua index 59e91ac8..cf6ac633 100644 --- a/lua/lspconfig.lua +++ b/lua/lspconfig.lua @@ -5,12 +5,7 @@ local M = { } function M.available_servers() - vim.deprecate( - 'lspconfig.available_servers', - 'lspconfig.util.available_servers', - '0.1.4', - 'lspconfig' - ) + vim.deprecate('lspconfig.available_servers', 'lspconfig.util.available_servers', '0.1.4', 'lspconfig') return M.util.available_servers() end |
