From cf06d06fb3c2441d3d07c1f1dca881f22b54b13d Mon Sep 17 00:00:00 2001 From: sum01 Date: Wed, 17 Jan 2018 23:44:53 -0500 Subject: [PATCH] Fix Makefile = highlighting I think they weren't being highlighted at all, leading to a weird looking default white box around them. --- runtime/syntax/makefile.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/syntax/makefile.yaml b/runtime/syntax/makefile.yaml index 72502a87..7e90cdeb 100644 --- a/runtime/syntax/makefile.yaml +++ b/runtime/syntax/makefile.yaml @@ -7,8 +7,8 @@ detect: rules: - preproc: "\\<(ifeq|ifdef|ifneq|ifndef|else|endif)\\>" - statement: "^(export|include|override)\\>" - - operator: "^[^:= ]+:" - - operator: "([=,%]|\\+=|\\?=|:=|&&|\\|\\|)" + - symbol.operator: "^[^:= ]+:" + - symbol.operator: "([=,%]|\\+=|\\?=|:=|&&|\\|\\|)" - statement: "\\$\\((abspath|addprefix|addsuffix|and|basename|call|dir)[[:space:]]" - statement: "\\$\\((error|eval|filter|filter-out|findstring|firstword)[[:space:]]" - statement: "\\$\\((flavor|foreach|if|info|join|lastword|notdir|or)[[:space:]]"