aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDusty Pomerleau <[email protected]>2020-11-06 22:49:08 +0000
committerDusty Pomerleau <[email protected]>2020-11-06 22:49:08 +0000
commit397b76f28b15b42c7c7ad0e0d42eb86d19395a31 (patch)
treec731b0258a407f6ea3ab71bc0136fe23259d0b41
parent0373434ed4a0db418edad0c4393acf28adc48ef1 (diff)
add `+=` to assignment operators
-rw-r--r--editors/code/rust.tmGrammar.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/rust.tmGrammar.json b/editors/code/rust.tmGrammar.json
index 77595aa00..7475aadbb 100644
--- a/editors/code/rust.tmGrammar.json
+++ b/editors/code/rust.tmGrammar.json
@@ -693,7 +693,7 @@
693 { 693 {
694 "comment": "assignment operators", 694 "comment": "assignment operators",
695 "name": "keyword.operator.assignment.rust", 695 "name": "keyword.operator.assignment.rust",
696 "match": "(-=|\\*=|/=|%=|\\^=|&=|\\|=|<<=|>>=)" 696 "match": "(\\+=|-=|\\*=|/=|%=|\\^=|&=|\\|=|<<=|>>=)"
697 }, 697 },
698 { 698 {
699 "comment": "single equal", 699 "comment": "single equal",