From 6b51c72e0cc99c6c03c521f77793028cf63afd45 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 11 Dec 2017 23:05:36 +0100 Subject: tui: rework deferred-termcodes implementation Try another approach to defer the termcodes. Seems less janky, but still not perfect. ref #7664 ref #7649 ref #7664 ref 27f9b1c7b029d8 --- src/nvim/main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nvim/main.c') diff --git a/src/nvim/main.c b/src/nvim/main.c index 0346414697..5d826d9524 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -563,6 +563,9 @@ int main(int argc, char **argv) (void)eval_has_provider("clipboard"); } + if (!headless_mode) { + ui_builtin_after_startup(); + } TIME_MSG("before starting main loop"); ILOG("starting main loop"); -- cgit