diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/language_rivet.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/language_rivet.lua b/plugins/language_rivet.lua index 028b033..b8d227c 100644 --- a/plugins/language_rivet.lua +++ b/plugins/language_rivet.lua @@ -32,7 +32,7 @@ syntax.add { {pattern = "%@%s?[%a_][%w_]*", type = "literal"}, -- builtin func/var {pattern = "[%a_][%w_]*%f[(]", type = "function"}, {pattern = "#%s?[%a_][%w_]*", type = "comment"}, -- if/else_if/else/endif - {pattern = "#%s?.*", type = "comment"}, -- attributes + {pattern = "#%s?.*", type = "keyword2"}, -- attributes {pattern = "[%a_][%w_]*", type = "symbol"} }, symbols = { |