aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/buf.lua
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-03-08 11:23:17 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-03-09 10:54:24 +0100
commit649dd00fe2e54183cc210f24d36504a61e5ea605 (patch)
treea72254759df6154ccf9829016d1eafd27acf3222 /runtime/lua/vim/lsp/buf.lua
parenta69c72063994f8e9064b6d9c9f280120423897b8 (diff)
downloadrneovim-649dd00fe2e54183cc210f24d36504a61e5ea605.tar.gz
rneovim-649dd00fe2e54183cc210f24d36504a61e5ea605.tar.bz2
rneovim-649dd00fe2e54183cc210f24d36504a61e5ea605.zip
feat!: remove deprecated functions
Diffstat (limited to 'runtime/lua/vim/lsp/buf.lua')
-rw-r--r--runtime/lua/vim/lsp/buf.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua
index fd78a10672..50121f30b2 100644
--- a/runtime/lua/vim/lsp/buf.lua
+++ b/runtime/lua/vim/lsp/buf.lua
@@ -28,16 +28,6 @@ local function request(method, params, handler)
return vim.lsp.buf_request(0, method, params, handler)
end
---- Checks whether the language servers attached to the current buffer are
---- ready.
----
----@return boolean : if server responds.
----@deprecated
-function M.server_ready()
- vim.deprecate('vim.lsp.buf.server_ready()', nil, '0.10')
- return not not vim.lsp.buf_notify(0, 'window/progress', {})
-end
-
--- Displays hover information about the symbol under the cursor in a floating
--- window. Calling the function twice will jump into the floating window.
function M.hover()