是否可以在VSCode主题中使用editor.tokenColorCustomizations?

Wil*_*one 4 visual-studio-code vscode-extensions

1.15新增了对语法范围的一般方面进行主题设置的功能,我正在尝试使用通用标记(“ comments”,“ variables”等)简化主题,但是editor.tokenColorCustomizations似乎不起作用。是否有可行的变体或不适合主题?

Gam*_*a11 5

是的,那些“通用标记”是特定于该editor.tokenColorCustomizations设置的(意味着您不能在主题中使用它们)。它们被映射到TmLanguage范围,如下所示:

comments: 'comment',
strings: 'string',
keywords: 'keyword',
numbers: 'constant.numeric',
types: 'entity.name.type',
functions: 'entity.name.function',
variables: 'variable'
Run Code Online (Sandbox Code Playgroud)

https://github.com/Microsoft/vscode/pull/29393/files#diff-fcf8acf0156463f17f7fa7ed78c3b7e8R27