diff options
author | Chris Kipp <ckipp@pm.me> | 2023-01-11 20:17:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 20:17:10 +0100 |
commit | a37c686d21c1ad4e50f455e989642d38435d41ba (patch) | |
tree | e02839edbad36027acda29a23e5a0685e88efb2b /runtime/lua/vim/lsp.lua | |
parent | 8c5c2136fef12e6fe00739c91ff994344ab5d466 (diff) | |
download | rneovim-a37c686d21c1ad4e50f455e989642d38435d41ba.tar.gz rneovim-a37c686d21c1ad4e50f455e989642d38435d41ba.tar.bz2 rneovim-a37c686d21c1ad4e50f455e989642d38435d41ba.zip |
docs(lsp): update buf_notify and rpc.notify params types (#21753)
Small, but I was getting warnings about my usage of
`vim.lsp.buf_notify(bufnr, method, {example = example})` since the docs
say that `params` must be a string, however this can really be anything
when it's passed to `rpc.notify` since we just end up calling
`vim.json.encode(payload)` on it. This fixes the docs in those two
places and regenerates them.
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 13f8c81dfb..cfd6c938f7 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -2048,7 +2048,7 @@ end --- Send a notification to a server ---@param bufnr (number|nil) The number of the buffer ---@param method (string) Name of the request method ----@param params (string) Arguments to send to the server +---@param params (any) Arguments to send to the server --- ---@returns true if any client returns true; false otherwise function lsp.buf_notify(bufnr, method, params) |