更改meta.function-call Visual Studio代码的字体颜色

时间:2018-08-16 11:21:38

标签: python visual-studio-code vscode-settings

我正在尝试在点“。” 后配置字体颜色。在父类rute “ meta.function-call” ge之后调用方法时:

import os

os.path()

在这种情况下为 path ,但我想像其他文本编辑器(例如 sublimeText )一样为其他所有内容进行自定义。在网络上找不到任何相关内容

1 个答案:

答案 0 :(得分:1)

下面是一个为函数名称和括号上色的示例(可以省略主题名称级别以应用于所有主题)

"editor.tokenColorCustomizations": {
    "[Atom One Light]": {
        "textMateRules": [
            {
                "scope": [
                    "meta.function-call.generic.python",
                    "punctuation.definition.arguments.begin.python",
                    "punctuation.definition.arguments.end.python"
                ], /*functions()*/
                "settings": {
                    "foreground": "#0184BC"
                }
            }
        ]
    }

您可以使用 Developer:Inspect TM Scopes (在“运行命令”菜单中输入)来识别每个单独的令牌:

enter image description here