diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-03-09 15:00:41 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-03-09 15:00:41 -0700 |
commit | 7a7f497b483cd65e340064f23ed1c73425ecba0a (patch) | |
tree | d5c99ea22a1e10300d06165f8ac96df6b0dc59e1 /src/nvim/ui_client.h | |
parent | 1b7b916b7631ddf73c38e3a0070d64e4636cb2f3 (diff) | |
parent | ade1b12f49c3b3914c74847d791eb90ea90b56b7 (diff) | |
download | rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.tar.gz rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.tar.bz2 rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.zip |
Merge remote-tracking branch 'upstream/master' into aucmd_textputpost
Diffstat (limited to 'src/nvim/ui_client.h')
-rw-r--r-- | src/nvim/ui_client.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/nvim/ui_client.h b/src/nvim/ui_client.h index 93170ed86d..d3be9882aa 100644 --- a/src/nvim/ui_client.h +++ b/src/nvim/ui_client.h @@ -4,15 +4,10 @@ #include <stddef.h> #include <stdint.h> -#include "nvim/api/private/defs.h" #include "nvim/grid_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" #include "nvim/types_defs.h" - -typedef struct { - const char *name; - void (*fn)(Array args); -} UIClientHandler; +#include "nvim/ui_defs.h" // IWYU pragma: keep // Temporary buffer for converting a single grid_line event EXTERN size_t grid_line_buf_size INIT( = 0); @@ -39,6 +34,6 @@ EXTERN bool ui_client_forward_stdin INIT( = false); // uncrustify:off #ifdef INCLUDE_GENERATED_DECLARATIONS # include "ui_client.h.generated.h" -# include "ui_events_client.h.generated.h" // IWYU pragma: export +# include "ui_events_client.h.generated.h" #endif // uncrustify:on |