diff options
author | Dusty Pomerleau <[email protected]> | 2020-11-06 22:49:08 +0000 |
---|---|---|
committer | Dusty Pomerleau <[email protected]> | 2020-11-06 22:49:08 +0000 |
commit | 397b76f28b15b42c7c7ad0e0d42eb86d19395a31 (patch) | |
tree | c731b0258a407f6ea3ab71bc0136fe23259d0b41 /editors/code | |
parent | 0373434ed4a0db418edad0c4393acf28adc48ef1 (diff) |
add `+=` to assignment operators
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/rust.tmGrammar.json | 2 |
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", |