aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-06-08 22:02:02 +0200
committerbfredl <bjorn.linse@gmail.com>2022-06-20 12:44:56 +0200
commit5d6987210578f5f1c3151988b99a9411f9603374 (patch)
treec8d1b70ef948a4beafe82195431f1c6607fbe8b7 /src/nvim/ex_docmd.c
parentb2ed439bd5ab1b431bb61f8754554c48453495c5 (diff)
downloadrneovim-5d6987210578f5f1c3151988b99a9411f9603374.tar.gz
rneovim-5d6987210578f5f1c3151988b99a9411f9603374.tar.bz2
rneovim-5d6987210578f5f1c3151988b99a9411f9603374.zip
perf(ui): reduce allocation overhead when encoding "redraw" events
Note for external UIs: Nvim can now emit multiple "redraw" event batches before a final "flush" event is received. To retain existing behavior, clients should make sure to update visible state at an explicit "flush" event, not just the end of a "redraw" batch of event. * Get rid of copy_object() blizzard in the auto-generated ui_event layer * Special case "grid_line" by encoding screen state directly to msgpack events with no intermediate API events. * Get rid of the arcane notion of referring to the screen as the "shell" * Array and Dictionary are kvec_t:s, so define them as such. * Allow kvec_t:s, such as Arrays and Dictionaries, to be allocated with a predetermined size within an arena. * Eliminate redundant capacity checking when filling such kvec_t:s with values.
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index 28b1a7580d..a65e89a9f5 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -7272,7 +7272,7 @@ void tabpage_close_other(tabpage_T *tp, int forceit)
redraw_tabline = true;
if (h != tabline_height()) {
- shell_new_rows();
+ win_new_screen_rows();
}
}