diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-04-05 00:21:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 00:21:51 +0200 |
commit | 9b2d4ff625c59961288dfb2708cc94516667b2ad (patch) | |
tree | e3c00985f13558020766a21b15fb0a3a530a530c /src/nvim/syntax.h | |
parent | 160c9fd126220d6e79204f637ac4bcd999527d4b (diff) | |
parent | a4d3804837e865ca11d2fd0701d23f7eda4da4e4 (diff) | |
download | rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.tar.gz rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.tar.bz2 rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.zip |
Merge pull request #14227 from bfredl/bordaa3
Border: allow to enable/disable specific border edges
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index 9fbad74f64..38f848f178 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -27,6 +27,8 @@ #define HL_CONCEAL 0x20000 /* can be concealed */ #define HL_CONCEALENDS 0x40000 /* can be concealed */ +#define SYN_GROUP_STATIC(s) syn_check_group((char_u *)S_LEN(s)) + typedef struct { char *name; RgbValue color; |