aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/shell.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-03-18 12:34:36 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-03-18 14:16:23 -0300
commit8b7b71f4742d94cf7a2e5a08e7b2f5a725619476 (patch)
tree05ec646ae8f0bfb6080d160456e4de3038ea9560 /src/nvim/os/shell.c
parenta0f2961b4fc2beabf1266faef0f543afdffd45f8 (diff)
downloadrneovim-8b7b71f4742d94cf7a2e5a08e7b2f5a725619476.tar.gz
rneovim-8b7b71f4742d94cf7a2e5a08e7b2f5a725619476.tar.bz2
rneovim-8b7b71f4742d94cf7a2e5a08e7b2f5a725619476.zip
ui: Refactor so that busy state won't be the default
Even though assuming nvim is busy most times is simpler, it has a problem: A lot of unnecessary busy_start/busy_stop notifications are sent to the UI. That's because in the majority of scenarios almost no time is spent between `event_poll` calls. This restores the normal behavior which is to call busy_start only when nvim is going to perform some task that can take a significant amount of time. Also improve the usage of buffering in the TUI when changing the cursor state.
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r--src/nvim/os/shell.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c
index 290d6a9ec9..6fcb62a5f3 100644
--- a/src/nvim/os/shell.c
+++ b/src/nvim/os/shell.c
@@ -241,6 +241,7 @@ static int shell(const char *cmd,
// invoke busy_start here so event_poll_until wont change the busy state for
// the UI
ui_busy_start();
+ ui_flush();
status = job_wait(job, -1);
ui_busy_stop();