From 6c823c75f7eb60a6e8e560490fc44c834600496e Mon Sep 17 00:00:00 2001 From: aspizu <108279865+aspizu@users.noreply.github.com> Date: Sun, 24 Mar 2024 16:09:45 +0530 Subject: [PATCH] Add comparision operators --- syntaxes/zig.tmLanguage.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntaxes/zig.tmLanguage.json b/syntaxes/zig.tmLanguage.json index f09f194..b2a2f6e 100644 --- a/syntaxes/zig.tmLanguage.json +++ b/syntaxes/zig.tmLanguage.json @@ -184,7 +184,7 @@ }, { "name": "keyword.operator.comparison.zig", - "match": "(\\b(and|or)\\b)|(==|!=)" + "match": "(\\b(and|or)\\b)|(==|!=|<=|>=|<|>)" }, { "name": "keyword.operator.arithmetic.zig", @@ -309,4 +309,4 @@ ] } } -} \ No newline at end of file +}