From 935f60436d8fbd8df1650e50523df3686fb5f3be Mon Sep 17 00:00:00 2001 From: Thomas Aylott Date: Mon, 5 Oct 2009 12:35:04 -0400 Subject: [PATCH] fixed syntax coloring for operators --- Syntaxes/JavaScript Basic.tmLanguage | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Syntaxes/JavaScript Basic.tmLanguage b/Syntaxes/JavaScript Basic.tmLanguage index a74bbfb..3de8702 100644 --- a/Syntaxes/JavaScript Basic.tmLanguage +++ b/Syntaxes/JavaScript Basic.tmLanguage @@ -636,10 +636,10 @@ match (?x) - < | # relational left-to-right both - > | # relational left-to-right both <= | # relational left-to-right both - >= # relational left-to-right both + >= | # relational left-to-right both + < | # relational left-to-right both + > # relational left-to-right both name keyword.operator.relational.js