diff options
author | hlpr98 <hlpr98@gmail.com> | 2022-03-12 21:08:29 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-03-15 19:55:34 +0100 |
commit | 794d2744f33562326172801ddd729853e7135347 (patch) | |
tree | 539b34d053bdc4b5a23bb5e2824042c211ced2dc /src/nvim/map.c | |
parent | aa35d15a0db8a5a2a0b06aca7b7161c5e35b57b1 (diff) | |
download | rneovim-794d2744f33562326172801ddd729853e7135347.tar.gz rneovim-794d2744f33562326172801ddd729853e7135347.tar.bz2 rneovim-794d2744f33562326172801ddd729853e7135347.zip |
feat(ui): implement ui_client 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..260a27c485 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, ApiRedrawWrapper, NULL) MAP_IMPL(ColorKey, ColorItem, COLOR_ITEM_INITIALIZER) |