Skip to content

Commit fb6adec

Browse files
authored
fix **=
1 parent cf0b710 commit fb6adec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

grammars/javascript.cson

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,8 @@
13501350
'operators':
13511351
'patterns': [
13521352
{
1353-
'match': '%=|\\+=|-=|\\*=|(?<!\\()/=|\\*\\*='
1353+
# %= **= *= /= += -=
1354+
'match': '%=|\\*\\*=|\\*=|(?<!\\()/=|\\+=|-='
13541355
'name': 'keyword.operator.assignment.compound.js'
13551356
}
13561357
{
@@ -1398,7 +1399,7 @@
13981399
'name': 'keyword.operator.increment.js'
13991400
}
14001401
{
1401-
'match': '%|\\*(?!\\*)|/|-|\\+|\\*\\*'
1402+
'match': '%|\\*\\*|\\*|/|-|\\+'
14021403
'name': 'keyword.operator.js'
14031404
}
14041405
]

0 commit comments

Comments
 (0)