diff options
author | Aleksey Kladov <[email protected]> | 2019-12-17 13:43:37 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-12-17 13:45:46 +0000 |
commit | 1c8467e20aa8d481a4583a1c2cf40fad3d2ff53c (patch) | |
tree | fb9121c4878acd686dd8579dee0f6c177155fc54 /editors/code | |
parent | 7191dd7d5311af0ad8ce5ea9d6d81b64acd25355 (diff) |
Fix highlighting token names
Diffstat (limited to 'editors/code')
-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'), |