aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui_client.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-03-17 20:17:38 +0100
committerGitHub <noreply@github.com>2022-03-17 20:17:38 +0100
commit09a3b33d36a62823081f4a199223eac7785b06f6 (patch)
treef468d028d48eee89550124c30a26cc3fe367ed5c /src/nvim/ui_client.c
parent3c7e937a892308498ba23ce5c0959e51fbf28911 (diff)
parent55b6ade7fee36283dc2853494edf9a5ac2dd4be9 (diff)
downloadrneovim-09a3b33d36a62823081f4a199223eac7785b06f6.tar.gz
rneovim-09a3b33d36a62823081f4a199223eac7785b06f6.tar.bz2
rneovim-09a3b33d36a62823081f4a199223eac7785b06f6.zip
Merge pull request #17747 from bfredl/ui_input
feat(ui_client): input and resize
Diffstat (limited to 'src/nvim/ui_client.c')
-rw-r--r--src/nvim/ui_client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ui_client.c b/src/nvim/ui_client.c
index f11ed45e86..6e45a28e89 100644
--- a/src/nvim/ui_client.c
+++ b/src/nvim/ui_client.c
@@ -52,8 +52,6 @@ void ui_client_init(uint64_t chan)
/// Handler for "redraw" events sent by the NVIM server
///
-/// This is just a stub. The mentioned functionality will be implemented.
-///
/// This function will be called by handle_request (in msgpack_rpc/channel.c)
/// The individual ui_events sent by the server are individually handled
/// by their respective handlers defined in ui_events_client.generated.h
@@ -92,6 +90,7 @@ void ui_client_execute(uint64_t chan)
{
while (true) {
loop_poll_events(&main_loop, -1);
+ multiqueue_process_events(resize_events);
}
getout(0);