aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-03-26 00:45:27 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2021-04-04 18:32:31 +0200
commita4d3804837e865ca11d2fd0701d23f7eda4da4e4 (patch)
tree30821b71b5f77edd8b2d195c41f09dc8a8e19231 /src/nvim/syntax.h
parent76f5c72860b237d66c949dcdeb6967047810b956 (diff)
downloadrneovim-a4d3804837e865ca11d2fd0701d23f7eda4da4e4.tar.gz
rneovim-a4d3804837e865ca11d2fd0701d23f7eda4da4e4.tar.bz2
rneovim-a4d3804837e865ca11d2fd0701d23f7eda4da4e4.zip
Border: allow to enable/disable specific border edges
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r--src/nvim/syntax.h2
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;