diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-02-02 21:27:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-02 21:27:09 +0100 |
commit | 79a0ea2bec7c4a1c82990c07c87098b87bc2a1da (patch) | |
tree | ffdf0820ab0b70622d58d40936ac6f0d9e2658fd /src/nvim/ui_compositor.h | |
parent | f89d0d8230f34dca49eddbea179d274955b572b9 (diff) | |
parent | 0f96a21e3fd6ba989e27a992e48c084dd02d8885 (diff) | |
download | rneovim-79a0ea2bec7c4a1c82990c07c87098b87bc2a1da.tar.gz rneovim-79a0ea2bec7c4a1c82990c07c87098b87bc2a1da.tar.bz2 rneovim-79a0ea2bec7c4a1c82990c07c87098b87bc2a1da.zip |
Merge pull request #9530 from bfredl/pum_float
Implement popupmenu as a floating grid internally to reduce flicker
Diffstat (limited to 'src/nvim/ui_compositor.h')
-rw-r--r-- | src/nvim/ui_compositor.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nvim/ui_compositor.h b/src/nvim/ui_compositor.h new file mode 100644 index 0000000000..b3780db532 --- /dev/null +++ b/src/nvim/ui_compositor.h @@ -0,0 +1,12 @@ +// Bridge for communication between a UI thread and nvim core. +// Used by the built-in TUI and libnvim-based UIs. +#ifndef NVIM_UI_COMPOSITOR_H +#define NVIM_UI_COMPOSITOR_H + +#include "nvim/ui.h" +#include "nvim/event/defs.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "ui_compositor.h.generated.h" +#endif +#endif // NVIM_UI_COMPOSITOR_H |