diff options
author | Aleksey Kladov <[email protected]> | 2018-12-28 14:39:12 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-28 15:17:43 +0000 |
commit | d7440a5f4928415f2d2a9f7b2badaff8a9376a09 (patch) | |
tree | 077bd8c5306efc0d0df6d33224a17ac9e6353711 /editors | |
parent | 406505e096b4e6626ba8eb6c035671783ed2a577 (diff) |
highlight macro idents
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/highlighting.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts index d440e77c7..2521dff62 100644 --- a/editors/code/src/highlighting.ts +++ b/editors/code/src/highlighting.ts | |||
@@ -28,7 +28,8 @@ export class Highlighter { | |||
28 | ['builtin', decor('#DD6718')], | 28 | ['builtin', decor('#DD6718')], |
29 | ['text', decor('#DCDCCC')], | 29 | ['text', decor('#DCDCCC')], |
30 | ['attribute', decor('#BFEBBF')], | 30 | ['attribute', decor('#BFEBBF')], |
31 | ['literal', decor('#DFAF8F')] | 31 | ['literal', decor('#DFAF8F')], |
32 | ['macro', decor('#DFAF8F')] | ||
32 | ]; | 33 | ]; |
33 | 34 | ||
34 | return new Map<string, vscode.TextEditorDecorationType>(decorations); | 35 | return new Map<string, vscode.TextEditorDecorationType>(decorations); |