diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-02-10 10:21:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-10 10:21:47 -0800 |
commit | c7d13f2895fa657ff3d9d45741f9abec25072b56 (patch) | |
tree | 0b61d786b8fb318a0e9b2c53eb633332af5aa05d /src/nvim/api/vim.c | |
parent | ad60b3fb4806c0917010bbe97876c22fb57cabcd (diff) | |
parent | a1906c23ddab6fa4d15bc5ceddee97df8034d8cb (diff) | |
download | rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.gz rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.bz2 rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.zip |
Merge #32385 UI :detach command
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index c103a56032..02aa73d98d 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -359,11 +359,11 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_ks) /// @param keys to be typed /// @return Number of bytes actually written (can be fewer than /// requested if the buffer becomes full). -Integer nvim_input(String keys) +Integer nvim_input(uint64_t channel_id, String keys) FUNC_API_SINCE(1) FUNC_API_FAST { may_trigger_vim_suspend_resume(false); - return (Integer)input_enqueue(keys); + return (Integer)input_enqueue(channel_id, keys); } /// Send mouse event from GUI. @@ -1485,7 +1485,8 @@ Array nvim_get_api_info(uint64_t channel_id, Arena *arena) return rv; } -/// Self-identifies the client. Sets the `client` object returned by |nvim_get_chan_info()|. +/// Self-identifies the client, and sets optional flags on the channel. Defines the `client` object +/// returned by |nvim_get_chan_info()|. /// /// Clients should call this just after connecting, to provide hints for debugging and /// orchestration. (Note: Something is better than nothing! Fields are optional, but at least set |