diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-11-02 04:46:09 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-02 04:46:09 +0000 |
commit | e7f90866bcf4b04a11e958eda0ac53f7ff0a607b (patch) | |
tree | f88a1190821d9220bf8ed8a255942d3591424d26 | |
parent | 86d3b784075966028c84e24ff4327a26fe7fbacb (diff) | |
parent | 79598f55b05b9b717122ffe8f52546b8ce7c4a31 (diff) |
Merge #6436
6436: Textmate grammar: allow comments in attributes r=dustypomerleau a=dustypomerleau
Fixes #6419
Co-authored-by: Dusty Pomerleau <[email protected]>
-rw-r--r-- | editors/code/rust.tmGrammar.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/editors/code/rust.tmGrammar.json b/editors/code/rust.tmGrammar.json index 1b8cc713a..b3eec327b 100644 --- a/editors/code/rust.tmGrammar.json +++ b/editors/code/rust.tmGrammar.json | |||
@@ -140,6 +140,12 @@ | |||
140 | }, | 140 | }, |
141 | "patterns": [ | 141 | "patterns": [ |
142 | { | 142 | { |
143 | "include": "#block-comments" | ||
144 | }, | ||
145 | { | ||
146 | "include": "#comments" | ||
147 | }, | ||
148 | { | ||
143 | "include": "#keywords" | 149 | "include": "#keywords" |
144 | }, | 150 | }, |
145 | { | 151 | { |