diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-17 13:46:12 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-17 13:46:12 +0000 |
commit | f51a3fed9f8227a2b3bc8521b529cb9734ff0e7e (patch) | |
tree | 9a7b26c97e4254c90f2ded7073f3fb038f5b2f98 /editors/code/src/highlighting.ts | |
parent | 4a58522119955f36d95212be902fe3ab79c5e922 (diff) | |
parent | 1c8467e20aa8d481a4583a1c2cf40fad3d2ff53c (diff) |
Merge #2580
2580: Fix highlighting token names r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/highlighting.ts')
-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 d7c0ae131..e1b0d13e7 100644 --- a/editors/code/src/highlighting.ts +++ b/editors/code/src/highlighting.ts | |||
@@ -52,12 +52,12 @@ export class Highlighter { | |||
52 | decoration('function'), | 52 | decoration('function'), |
53 | decoration('parameter'), | 53 | decoration('parameter'), |
54 | decoration('constant'), | 54 | decoration('constant'), |
55 | decoration('type'), | 55 | decoration('type.builtin'), |
56 | decoration('type.self'), | ||
57 | decoration('type.generic'), | 56 | decoration('type.generic'), |
58 | decoration('type.param'), | ||
59 | decoration('type.lifetime'), | 57 | decoration('type.lifetime'), |
60 | decoration('builtin'), | 58 | decoration('type.param'), |
59 | decoration('type.self'), | ||
60 | decoration('type'), | ||
61 | decoration('text'), | 61 | decoration('text'), |
62 | decoration('attribute'), | 62 | decoration('attribute'), |
63 | decoration('literal'), | 63 | decoration('literal'), |