aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-12-11 23:05:36 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-12-13 22:17:39 +0100
commit6b51c72e0cc99c6c03c521f77793028cf63afd45 (patch)
tree8d99fc28882dca17d57cabdbf0158d24d9a1883b /src/nvim/ui.c
parent6203c23449cfdf8fb09c33d3ab267703d57123fa (diff)
downloadrneovim-6b51c72e0cc99c6c03c521f77793028cf63afd45.tar.gz
rneovim-6b51c72e0cc99c6c03c521f77793028cf63afd45.tar.bz2
rneovim-6b51c72e0cc99c6c03c521f77793028cf63afd45.zip
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
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r--src/nvim/ui.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c
index 81da88c54a..5c8e9380db 100644
--- a/src/nvim/ui.c
+++ b/src/nvim/ui.c
@@ -138,6 +138,14 @@ void ui_builtin_start(void)
#endif
}
+/// Immediately after VimEnter event.
+void ui_builtin_after_startup(void)
+{
+#ifdef FEAT_TUI
+ UI_CALL(after_startup);
+#endif
+}
+
void ui_builtin_stop(void)
{
UI_CALL(stop);