VSCODE 备注 //TODO 代码高亮方法

VSCODE 备注 //TODO 代码高亮方法:

1.安装插件
在这里插入图片描述

2.插件配置如下:
在这里插入图片描述

3.将配置直接复制进去:

 "todohighlight.defaultStyle": {
    
        "color": "red",
        "backgroundColor": "#ffab00",
        "overviewRulerColor": "#ffab00",
        "cursor": "pointer",
        "border": "1px solid #eee",
        "borderRadius": "2px",
        "isWholeLine": true,
        //other styling properties goes here ... 
    },

4.最后写的时候注意 TODO必须大写,而且后面要加冒号:

在这里插入图片描述


版权声明:本文为qq_35913301原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。