2017-08-11 17 views
1

1.15は、構文スコープの一般的な側面をテーマにする機能を追加しましたが、汎用トークン( 'comments'、 'variables'など)を使用してテーマを単純化しようとしていますが、editor.tokenColorCustomizationsは機能しません。作品に違いがあるのか​​、それともテーマを意図していないのですか?VSCodeテーマでeditor.tokenColorCustomizationsを使用することはできますか?

答えて

0

これらの「一般的なトークン」は、editor.tokenColorCustomizationsの設定に固有のものです(テーマで使用できないことを意味します)。次のように彼らはTmLanguageスコープにマッピングされます:

comments: 'comment', 
strings: 'string', 
keywords: 'keyword', 
numbers: 'constant.numeric', 
types: 'entity.name.type', 
functions: 'entity.name.function', 
variables: 'variable' 

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

関連する問題