mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00

Initially we will use this for the popupmenu, floating windows will follow soon NB: writedelay + compositor is weird, we need more flexible redraw introspection.
13 lines
341 B
C
13 lines
341 B
C
// 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
|