Skip to content

Commit

Permalink
or, and, etc must be followed by a space
Browse files Browse the repository at this point in the history
  • Loading branch information
rattrayalex committed Mar 12, 2017
1 parent 7e251d5 commit 0d14410
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions grammars/lightscript.cson
Expand Up @@ -1853,12 +1853,12 @@ repository:
{
match: '''
(?x)
!(?!=)| # logical-not right-to-left right
&& | # logical-and left-to-right both
\\|\\| | # logical-or left-to-right both
or | # logical-or left-to-right both
and | # logical-and left-to-right both
not # logical-not left-to-right both
!(?!=) | # logical-not right-to-left right
&& | # logical-and left-to-right both
\\|\\| | # logical-or left-to-right both
or(?=\\s) | # logical-or left-to-right both
and(?=\\s)| # logical-and left-to-right both
not(?=\\s) # logical-not left-to-right both
'''
name: "keyword.operator.logical.js"
}
Expand Down

0 comments on commit 0d14410

Please sign in to comment.