diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-11-06 22:52:13 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-06 22:52:13 +0000 |
commit | ed9f8d53bc6f779ec006141e1f99e25d8ce4427d (patch) | |
tree | 93a54e5049d45db58d4f332f41845e52b0496c02 /editors/code | |
parent | c365329911bfb33410da0363a4783f102094283f (diff) | |
parent | 397b76f28b15b42c7c7ad0e0d42eb86d19395a31 (diff) |
Merge #6488
6488: Textmate grammar: add `+=` to assignment operators r=dustypomerleau a=dustypomerleau
Fixes https://github.com/dustypomerleau/rust-syntax/issues/3.
Co-authored-by: Dusty Pomerleau <[email protected]>
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", |