diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2018-07-21 14:41:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-21 14:41:49 +0200 |
| commit | 94841e5eaebc3f2fb556056dd676afff21ff5d23 (patch) | |
| tree | 2bf31609b6f8e0fcb283ea4d776b39c654e9f399 /src/nvim/map.h | |
| parent | 5ff90a100a2af99ee4236995bef221a41eb2f643 (diff) | |
| parent | 6b8cd827a98e69eb61c107bff02ad953e240d787 (diff) | |
| download | rneovim-94841e5eaebc3f2fb556056dd676afff21ff5d23.tar.gz rneovim-94841e5eaebc3f2fb556056dd676afff21ff5d23.tar.bz2 rneovim-94841e5eaebc3f2fb556056dd676afff21ff5d23.zip | |
Merge pull request #8221 from bfredl/hlstate
UI grid protocol revision: line based updates and semantic highlights
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 ac1239a548..65204a798b 100644 --- a/src/nvim/map.h +++ b/src/nvim/map.h @@ -7,6 +7,7 @@ #include "nvim/api/private/defs.h" #include "nvim/api/private/dispatch.h" #include "nvim/bufhl_defs.h" +#include "nvim/highlight_defs.h" #if defined(__NetBSD__) # undef uint64_t @@ -35,6 +36,7 @@ MAP_DECLS(ptr_t, ptr_t) MAP_DECLS(uint64_t, ptr_t) MAP_DECLS(handle_T, ptr_t) MAP_DECLS(String, MsgpackRpcRequestHandler) +MAP_DECLS(HlEntry, int) #define map_new(T, U) map_##T##_##U##_new #define map_free(T, U) map_##T##_##U##_free |