diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-05-26 19:09:41 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-26 19:09:41 +0100 |
commit | 39470526eef50e32ee04edce9cf8ec57d10ade3c (patch) | |
tree | 2f46087200885ba4ecf5f4ab642d5e99cf91a431 /editors | |
parent | e3280eb4ae9d8c49badeaa0a503f546b95dfcd31 (diff) | |
parent | 1e823d6770385cece06ac8c2ee526cb31f4d4ea0 (diff) |
Merge #4621
4621: Highlight question mark operator r=matklad a=kuy
Fixes #4597
Co-authored-by: Yuki Kodama <[email protected]>
Diffstat (limited to 'editors')
-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 cdcd557dc..ab87cd39f 100644 --- a/editors/code/rust.tmGrammar.json +++ b/editors/code/rust.tmGrammar.json | |||
@@ -207,7 +207,7 @@ | |||
207 | { | 207 | { |
208 | "comment": "Miscellaneous operator", | 208 | "comment": "Miscellaneous operator", |
209 | "name": "keyword.operator.misc.rust", | 209 | "name": "keyword.operator.misc.rust", |
210 | "match": "(=>|::)" | 210 | "match": "(=>|::|\\?)" |
211 | }, | 211 | }, |
212 | { | 212 | { |
213 | "comment": "Comparison operator", | 213 | "comment": "Comparison operator", |