diff options
Diffstat (limited to 'runtime/lua/vim/_meta/builtin.lua')
| -rw-r--r-- | runtime/lua/vim/_meta/builtin.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/lua/vim/_meta/builtin.lua b/runtime/lua/vim/_meta/builtin.lua index 80524ab148..93e0e273b8 100644 --- a/runtime/lua/vim/_meta/builtin.lua +++ b/runtime/lua/vim/_meta/builtin.lua @@ -94,11 +94,12 @@ function vim.empty_dict() end --- @param ...? any function vim.rpcnotify(channel, method, ...) end ---- Sends a request to {channel} to invoke {method} via |RPC| and blocks until ---- a response is received. +--- Invokes |RPC| `method` on `channel` and blocks until a response is received. +--- +--- Note: Msgpack NIL values in the response are represented as |vim.NIL|. +--- +--- Example: see [nvim_exec_lua()] --- ---- Note: NIL values as part of the return value is represented as |vim.NIL| ---- special value --- @param channel integer --- @param method string --- @param ...? any |
