From 7c00b9efcafa9046f8226ce4650f1b9ad67243c9 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 18 Sep 2018 23:26:03 +0200 Subject: log: RPC, input, other events --- src/nvim/os/input.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/os/input.c') diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c index 599487c345..f62253cbce 100644 --- a/src/nvim/os/input.c +++ b/src/nvim/os/input.c @@ -351,6 +351,8 @@ static bool input_poll(int ms) blocking = true; multiqueue_process_events(ch_before_blocking_events); } + DLOG("blocking... events_enabled=%d events_pending=%d", events_enabled, + !multiqueue_empty(main_loop.events)); LOOP_PROCESS_EVENTS_UNTIL(&main_loop, NULL, ms, input_ready() || input_eof); blocking = false; -- cgit