python vscode注释扩展插件

插件: better-comments

支持不同注释需求,可以帮助你在代码中创建更人性化的注释。通过此扩展,你可以将不同注释进行分类。

 

下面是使用python注释扩展,先看图

python vscode注释扩展插件_第1张图片

 

这是使用默认注释效果图,也支持自定义注释和颜色,下面这张是我自定义的(个人喜好,不喜勿喷)

python vscode注释扩展插件_第2张图片
 

自定义方法:

在setting.json文件中加入代码:

"better-comments.tags": [
        {
     
            "tag": "!",
            "color": "#F75000",
            "strikethrough": false,
            "backgroundColor": "transparent"
        },
        {
     
            "tag": "?",
            "color": "#9AFF02",
            "strikethrough": false,
            "backgroundColor": "transparent"
        },
        {
     
            "tag": "//",
            "color": "#474747",
            "strikethrough": true,
            "backgroundColor": "transparent"
        },
        {
     
            "tag": "todo",
            "color": "#FF8C00",
            "strikethrough": false,
            "backgroundColor": "transparent"
        },
        {
     
            "tag": "*",
            "color": "#F00078",
            "strikethrough": false,
            "backgroundColor": "transparent"
        }
    ]

 

更改color即可,注意需要重启vscode方可生效。

你可能感兴趣的:(python)