diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-25 21:28:28 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-27 00:05:36 +0100 |
commit | 5f9d4d8afeb5dc3d5df4965c24cbb4c6e01694f7 (patch) | |
tree | 38d4f038774c077b61aeb32bea2b19f55ab14cb8 /runtime/lua/vim/lsp/buf.lua | |
parent | 0f22ea400ce5319a1e74eda41505fd9cfb788e35 (diff) | |
download | rneovim-5f9d4d8afeb5dc3d5df4965c24cbb4c6e01694f7.tar.gz rneovim-5f9d4d8afeb5dc3d5df4965c24cbb4c6e01694f7.tar.bz2 rneovim-5f9d4d8afeb5dc3d5df4965c24cbb4c6e01694f7.zip |
refactor: use vim.deprecate on all deprecated functions
Diffstat (limited to 'runtime/lua/vim/lsp/buf.lua')
-rw-r--r-- | runtime/lua/vim/lsp/buf.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua index 2f754444e9..051b9d4550 100644 --- a/runtime/lua/vim/lsp/buf.lua +++ b/runtime/lua/vim/lsp/buf.lua @@ -34,7 +34,7 @@ end ---@return boolean if server responds. ---@deprecated function M.server_ready() - vim.deprecate('vim.lsp.buf.server_ready', nil, '0.10.0') + vim.deprecate('vim.lsp.buf.server_ready()', nil, '0.10') return not not vim.lsp.buf_notify(0, 'window/progress', {}) end |