diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-05-24 15:20:22 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-24 15:20:22 +0100 |
commit | d959c913eaeae36b9e04c7b5ee8b341f6c5b678b (patch) | |
tree | 0bee9dbb6794748dc3aebce59292cbf466010af2 /editors | |
parent | 7e862626cc892662c3c95ba393483ac89c07e31a (diff) | |
parent | 1895888aec1c87096809057b19a602e1cec9ada6 (diff) |
Merge #4556
4556: More highlighting improvements r=matthewjasper a=matthewjasper
* Separate `true` and `false` from keywords (this matches the Textmate grammar).
* Handle more cases in `highlight_name_by_syntax`.
Co-authored-by: Matthew Jasper <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/package.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 578ee8b0e..21039ced8 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -644,6 +644,9 @@ | |||
644 | "function.attribute": [ | 644 | "function.attribute": [ |
645 | "entity.name.function.attribute.rust" | 645 | "entity.name.function.attribute.rust" |
646 | ], | 646 | ], |
647 | "boolean": [ | ||
648 | "constant.language.boolean.rust" | ||
649 | ], | ||
647 | "builtinType": [ | 650 | "builtinType": [ |
648 | "support.type.primitive.rust" | 651 | "support.type.primitive.rust" |
649 | ], | 652 | ], |