VSCode: `editor.tokenColorCustomizations` > `comment` 没有为整个评论着色

VSCode: `editor.tokenColorCustomizations` > `comment` does not color the whole comment

环境

问题

为什么重写editor.tokenColorCustomizations>comment时块注释首/*的颜色没有改变?

示例

"editor.tokenColorCustomizations": {
    "textMateRules": [
        {
            "scope": "punctuation.definition.comment",
            "settings": {
                "foreground": "#33f"
            }
        }
    ]
}