diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-08 11:36:47 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-11-21 11:24:14 +0100 |
commit | a4986ab47f4561ca82581b1a5f7c21004b05cee9 (patch) | |
tree | 1e385debd9f2dd9b1389bf57498c64e9e3cd0e8f /src/nvim/types.h | |
parent | 480b04122e93826bdfc74fbeacab2d94b089420f (diff) | |
download | rneovim-a4986ab47f4561ca82581b1a5f7c21004b05cee9.tar.gz rneovim-a4986ab47f4561ca82581b1a5f7c21004b05cee9.tar.bz2 rneovim-a4986ab47f4561ca82581b1a5f7c21004b05cee9.zip |
decorations: allow nvim_set_hl to break existing links
also add `default` flag to NOT break existing links/defs
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r-- | src/nvim/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h index 17f7e16740..2dbeecbf6d 100644 --- a/src/nvim/types.h +++ b/src/nvim/types.h @@ -2,6 +2,7 @@ #define NVIM_TYPES_H #include <stdint.h> +#include <stdbool.h> // dummy to pass an ACL to a function typedef void *vim_acl_T; |