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.c | |
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.c')
-rw-r--r-- | src/nvim/map.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/map.c b/src/nvim/map.c index 4e39eb8c07..b3f48ad5d6 100644 --- a/src/nvim/map.c +++ b/src/nvim/map.c @@ -179,6 +179,7 @@ MAP_IMPL(HlEntry, int, DEFAULT_INITIALIZER) MAP_IMPL(String, handle_T, 0) MAP_IMPL(String, int, DEFAULT_INITIALIZER) MAP_IMPL(int, String, DEFAULT_INITIALIZER) +MAP_IMPL(String, UIClientHandler, NULL) MAP_IMPL(ColorKey, ColorItem, COLOR_ITEM_INITIALIZER) |