diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-03-16 16:05:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-16 16:05:40 +0100 |
| commit | 4e5e0076cb643b52d762f226b27f22c8fb837567 (patch) | |
| tree | 572699fc6ed68c92a8fab6b8f41be15423899f1f /src/nvim/map.h | |
| parent | fa79a016bc894d3f89eddc7744868d2dd5458d51 (diff) | |
| parent | f01d203b70f426c1538813b3bacb4483e914ab44 (diff) | |
| download | rneovim-4e5e0076cb643b52d762f226b27f22c8fb837567.tar.gz rneovim-4e5e0076cb643b52d762f226b27f22c8fb837567.tar.bz2 rneovim-4e5e0076cb643b52d762f226b27f22c8fb837567.zip | |
Merge pull request #17708 from bfredl/ui_client
feat(ui): UI client episode II: event handlers
Diffstat (limited to 'src/nvim/map.h')
| -rw-r--r-- | src/nvim/map.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/map.h b/src/nvim/map.h index 00f72386a7..693ef50127 100644 --- a/src/nvim/map.h +++ b/src/nvim/map.h @@ -8,6 +8,7 @@ #include "nvim/extmark_defs.h" #include "nvim/highlight_defs.h" #include "nvim/map_defs.h" +#include "nvim/ui_client.h" #if defined(__NetBSD__) # undef uint64_t @@ -48,6 +49,7 @@ MAP_DECLS(HlEntry, int) MAP_DECLS(String, handle_T) MAP_DECLS(String, int) MAP_DECLS(int, String) +MAP_DECLS(String, UIClientHandler) MAP_DECLS(ColorKey, ColorItem) |