diff options
author | Laurențiu Nicola <[email protected]> | 2019-05-21 14:28:10 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2019-05-21 14:28:10 +0100 |
commit | b08362f6d2973336764c52ebc7cc5e9f34f0d80a (patch) | |
tree | f7e6bc248b65142a350a6db3262d228b7a6401e2 /editors/code/src | |
parent | 9ade271a67a9fae0d89f8138970679c9730e9fce (diff) |
Address feedback
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/highlighting.ts | 5 |
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'), |