aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/highlighting.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/highlighting.ts')
-rw-r--r--editors/code/src/highlighting.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 432f40ff4..e1a68544a 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -26,12 +26,11 @@ export class Highlighter {
26 const decorations: Iterable< 26 const decorations: Iterable<
27 [string, vscode.TextEditorDecorationType] 27 [string, vscode.TextEditorDecorationType]
28 > = [ 28 > = [
29 colorContrib('background'),
30 colorContrib('comment'), 29 colorContrib('comment'),
31 colorContrib('string'), 30 colorContrib('string'),
32 colorContrib('unsafe'),
33 colorContrib('keyword'), 31 colorContrib('keyword'),
34 colorContrib('control'), 32 colorContrib('keyword.control'),
33 colorContrib('keyword.unsafe'),
35 colorContrib('function'), 34 colorContrib('function'),
36 colorContrib('parameter'), 35 colorContrib('parameter'),
37 colorContrib('builtin'), 36 colorContrib('builtin'),