We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf0b710 commit fb6adecCopy full SHA for fb6adec
grammars/javascript.cson
@@ -1350,7 +1350,8 @@
1350
'operators':
1351
'patterns': [
1352
{
1353
- 'match': '%=|\\+=|-=|\\*=|(?<!\\()/=|\\*\\*='
+ # %= **= *= /= += -=
1354
+ 'match': '%=|\\*\\*=|\\*=|(?<!\\()/=|\\+=|-='
1355
'name': 'keyword.operator.assignment.compound.js'
1356
}
1357
@@ -1398,7 +1399,7 @@
1398
1399
'name': 'keyword.operator.increment.js'
1400
1401
- 'match': '%|\\*(?!\\*)|/|-|\\+|\\*\\*'
1402
+ 'match': '%|\\*\\*|\\*|/|-|\\+'
1403
'name': 'keyword.operator.js'
1404
1405
]
0 commit comments