diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-06-20 15:04:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 15:04:40 +0200 |
commit | e3bfc1293e30512a6aa23964a3486ee709ac3f21 (patch) | |
tree | c8d1b70ef948a4beafe82195431f1c6607fbe8b7 /src/nvim/ui.h | |
parent | b2ed439bd5ab1b431bb61f8754554c48453495c5 (diff) | |
parent | 5d6987210578f5f1c3151988b99a9411f9603374 (diff) | |
download | rneovim-e3bfc1293e30512a6aa23964a3486ee709ac3f21.tar.gz rneovim-e3bfc1293e30512a6aa23964a3486ee709ac3f21.tar.bz2 rneovim-e3bfc1293e30512a6aa23964a3486ee709ac3f21.zip |
Merge pull request #18988 from bfredl/uipack
refactor(ui): encode "redraw" events without intermediate allocations
Diffstat (limited to 'src/nvim/ui.h')
-rw-r--r-- | src/nvim/ui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/ui.h b/src/nvim/ui.h index 1d278010e8..7dd2f5bce3 100644 --- a/src/nvim/ui.h +++ b/src/nvim/ui.h @@ -8,6 +8,7 @@ #include "nvim/api/private/defs.h" #include "nvim/globals.h" #include "nvim/highlight_defs.h" +#include "nvim/memory.h" typedef enum { kUICmdline = 0, @@ -46,6 +47,8 @@ enum { typedef int LineFlags; +EXTERN ArenaMem ui_ext_fixblk INIT(= NULL); + struct ui_t { bool rgb; bool override; ///< Force highest-requested UI capabilities. |