diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-17 13:46:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-17 13:46:12 +0000 |
| commit | f51a3fed9f8227a2b3bc8521b529cb9734ff0e7e (patch) | |
| tree | 9a7b26c97e4254c90f2ded7073f3fb038f5b2f98 /editors/code/src | |
| parent | 4a58522119955f36d95212be902fe3ab79c5e922 (diff) | |
| parent | 1c8467e20aa8d481a4583a1c2cf40fad3d2ff53c (diff) | |
| download | rust-f51a3fed9f8227a2b3bc8521b529cb9734ff0e7e.tar.gz rust-f51a3fed9f8227a2b3bc8521b529cb9734ff0e7e.zip | |
Merge #2580
2580: Fix highlighting token names r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/highlighting.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts index d7c0ae1316a..e1b0d13e701 100644 --- a/editors/code/src/highlighting.ts +++ b/editors/code/src/highlighting.ts @@ -52,12 +52,12 @@ export class Highlighter { decoration('function'), decoration('parameter'), decoration('constant'), - decoration('type'), - decoration('type.self'), + decoration('type.builtin'), decoration('type.generic'), - decoration('type.param'), decoration('type.lifetime'), - decoration('builtin'), + decoration('type.param'), + decoration('type.self'), + decoration('type'), decoration('text'), decoration('attribute'), decoration('literal'), |
