todo-tree


 // ~/.config/Code/User/settings.json
 "[python]": {
    "editor.formatOnType": true
  },
  "terminal.integrated.fontFamily": "monospace",
  "editor.fontFamily": "'Courier New'",
  "todohighlight.exclude": ["**/node_modules/**", "**/bower_components/**", "**/dist/**", "**/build/**","**/devel/**", "**/.vscode/**", "**/.github/**", "**/_output/**", "**/*.min.*", "**/*.map", "**/.next/**"],
  "todo-tree.filtering.excludeGlobs": ["**/node_modules/**", "**/bower_components/**", "**/dist/**", "**/build/**","**/devel/**", "**/.vscode/**", "**/.github/**", "**/_output/**", "**/*.min.*", "**/*.map", "**/.next/**"],
  "todo-tree.regex.regex": "((%|#|--|//|<!--|^\\s*\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
  "todo-tree.general.tags": [
      "todo",
      "ywz", 
      "书本", 
      "重要", 
      "调用函数", 
      "note-tianyu", 
      "???", 
      "!!!", 
      "bug", 
      "tag", 
      "done", 
      "mark", 
      "test", 
      "zzz",
      "update",
 
      "?:",
      "!:",
      "param:",
      "Step:",
      "c++11:",
      "note:",
      "todo:",  
    ],
  "todo-tree.regex.regexCaseSensitive": false,
  "todo-tree.highlights.defaultHighlight": {
    //如果相应变量没赋值就会使用这里的默认值
    "foreground": "black",      //字体颜色
    // "background": "yellow",     //背景色
    "icon": "check",            //标签样式 check 是一个对号的样式
    "rulerColour": "yellow",    //边框颜色
    "type": "tag",              //填充色类型  可在TODO TREE 细节页面找到允许的值 
    "iconColour": "yellow"      //标签颜色
  },
  "todo-tree.highlights.customHighlight": {
    //todo 		需要做的功能
    "todo": {
      "icon": "alert", //标签样式
      "background": "#c9c552", //背景色
      "rulerColour": "#c9c552", //外框颜色
      "iconColour": "#c9c552" //标签颜色
    },
 
    //todo 		需要做的功能
    "重要": {
      "icon": "重要", //标签样式
      "background": "#e06e10", //背景色
      "rulerColour": "#e06e10", //外框颜色
      "iconColour": "#e06e10" //标签颜色
    },
    //todo 		需要做的功能
    "ywz": {
      "icon": "ywz", //标签样式
      "background": "#1cc99d", //背景色
      "rulerColour": "#1cc99d", //外框颜色
      "iconColour": "#1cc99d" //标签颜色
    },
    "书本": {
      "icon": "书本", //标签样式
      "background": "#1cc964", //背景色
      "rulerColour": "#1cc964", //外框颜色
      "iconColour": "#1cc964" //标签颜色
    },
 
    "调用函数": {
      "icon": "调用函数", //标签样式
      "background": "#ad2b8d", //背景色
      "rulerColour": "#ad2b8d", //外框颜色
      "iconColour": "#ad2b8d" //标签颜色
    },
    "note-tianyu": {
      "icon": "note-tianyu", //标签样式
      "background": "#7d12e2", //背景色
      "rulerColour": "#7d12e2", //外框颜色
      "iconColour": "#7d12e2" //标签颜色
    },
 
    //todo 		有疑问
    "???": {
      "icon": "???", //标签样式
      "background": "#10afe0", //背景色
      "rulerColour": "#10afe0", //外框颜色
      "iconColour": "#10afe0" //标签颜色
    },
 
    "!!!": {
      "icon": "!!!", //标签样式
      "background": "#3cc21e", //背景色
      "rulerColour": "#3cc21e", //外框颜色
      "iconColour": "#3cc21e" //标签颜色
    },
 
    //bug		必须要修复的BUG
    "bug": {
      "background": "#eb5c5c",
      "icon": "bug",
      "rulerColour": "#eb5c5c",
      "iconColour": "#eb5c5c"
    },
 
    //tag		标签
    "tag": {
      "background": "#38b2f4",
      "icon": "tag",
      "rulerColour": "#38b2f4",
      "iconColour": "#38b2f4",
      "rulerLane": "full"
    },
 
    //done		已完成
    "done": {
      "background": "#5eec95",
      "icon": "check",
      "rulerColour": "#5eec95",
      "iconColour": "#5eec95"
    },
 
    //mark     	标记一下
    "mark": {
      "background": "#f90",
      "icon": "note",
      "rulerColour": "#f90",
      "iconColour": "#f90"
    },
 
    //test		测试代码
    "test": {
      "background": "#df7be6",
      "icon": "flame",
      "rulerColour": "#df7be6",
      "iconColour": "#df7be6"
    },
 
    //update  	优化升级点
    "update": {
      "background": "#d65d8e",
      "icon": "versions",
      "rulerColour": "#d65d8e",
      "iconColour": "#d65d8e"
    },
    // zzz
    "zzz": {
      "background": "#b0cd22",
      "icon": "versions",
      "rulerColour": "#b0cd22",
      "iconColour": "#b0cd22"
    },
    
    "?:": {
      "icon": "question",
      "foreground": "yellow",
      "iconColour": "yellow",
      "type": "text-and-comment"
    },
    "!:": {
      "foreground": "red",
      "icon": "issue-opened",
      "iconColour": "red",
      "type": "text-and-comment"
    },
    "Step:": {
      "foreground": "#7CFC00",
      "icon": "question",
      "iconColour": "green",
      "type": "text-and-comment",
      "hideFromTree": true
    },
    "c++11:": {
      "icon": "tag",
      "foreground": "violet",
      "rulerColour": "violet",
      "iconColour": "violet",
      "type": "text-and-comment",
    },
    "note:": {
      "icon": "note",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
    "param:": {
      "icon": "issue-closed",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
  },
 // ~/.config/Code/User/settings.json
  "[python]": {
    "editor.formatOnType": true
  },
  "terminal.integrated.fontFamily": "monospace",
  "editor.fontFamily": "'Courier New'",
  "todohighlight.exclude": ["**/node_modules/**", "**/bower_components/**", "**/dist/**", "**/build/**", "**/.vscode/**", "**/.github/**", "**/_output/**", "**/*.min.*", "**/*.map", "**/.next/**"],

  "todo-tree.regex.regex": "((%|#|--|//|<!--|^\\s*\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
  "todo-tree.general.tags": [
      "todo",
      "ywz", 
      "书本", 
      "重要", 
      "调用函数", 
      "note-tianyu", 
      "???", 
      "!!!", 
      "bug", 
      "tag", 
      "done", 
      "mark", 
      "test", 
      "zzz",
      "update",

      "?:",
      "!:",
      "param:",
      "Step:",
      "c++11:",
      "note:",
      "todo:",  
    ],
  "todo-tree.regex.regexCaseSensitive": false,
  "todo-tree.highlights.defaultHighlight": {
    //如果相应变量没赋值就会使用这里的默认值
    "foreground": "black",      //字体颜色
    // "background": "yellow",     //背景色
    "icon": "check",            //标签样式 check 是一个对号的样式
    "rulerColour": "yellow",    //边框颜色
    "type": "tag",              //填充色类型  可在TODO TREE 细节页面找到允许的值 
    "iconColour": "yellow"      //标签颜色
  },
  "todo-tree.highlights.customHighlight": {
    //todo 		需要做的功能
    "todo": {
      "icon": "alert", //标签样式
      "background": "#c9c552", //背景色
      "rulerColour": "#c9c552", //外框颜色
      "iconColour": "#c9c552" //标签颜色
    },

    //todo 		需要做的功能
    "重要": {
      "icon": "重要", //标签样式
      "background": "#e06e10", //背景色
      "rulerColour": "#e06e10", //外框颜色
      "iconColour": "#e06e10" //标签颜色
    },
    //todo 		需要做的功能
    "ywz": {
      "icon": "ywz", //标签样式
      "background": "#1cc99d", //背景色
      "rulerColour": "#1cc99d", //外框颜色
      "iconColour": "#1cc99d" //标签颜色
    },
    "书本": {
      "icon": "书本", //标签样式
      "background": "#1cc964", //背景色
      "rulerColour": "#1cc964", //外框颜色
      "iconColour": "#1cc964" //标签颜色
    },

    "调用函数": {
      "icon": "调用函数", //标签样式
      "background": "#ad2b8d", //背景色
      "rulerColour": "#ad2b8d", //外框颜色
      "iconColour": "#ad2b8d" //标签颜色
    },
    "note-tianyu": {
      "icon": "note-tianyu", //标签样式
      "background": "#7d12e2", //背景色
      "rulerColour": "#7d12e2", //外框颜色
      "iconColour": "#7d12e2" //标签颜色
    },

    //todo 		有疑问
    "???": {
      "icon": "???", //标签样式
      "background": "#10afe0", //背景色
      "rulerColour": "#10afe0", //外框颜色
      "iconColour": "#10afe0" //标签颜色
    },

    "!!!": {
      "icon": "!!!", //标签样式
      "background": "#3cc21e", //背景色
      "rulerColour": "#3cc21e", //外框颜色
      "iconColour": "#3cc21e" //标签颜色
    },

    //bug		必须要修复的BUG
    "bug": {
      "background": "#eb5c5c",
      "icon": "bug",
      "rulerColour": "#eb5c5c",
      "iconColour": "#eb5c5c"
    },

    //tag		标签
    "tag": {
      "background": "#38b2f4",
      "icon": "tag",
      "rulerColour": "#38b2f4",
      "iconColour": "#38b2f4",
      "rulerLane": "full"
    },

    //done		已完成
    "done": {
      "background": "#5eec95",
      "icon": "check",
      "rulerColour": "#5eec95",
      "iconColour": "#5eec95"
    },

    //mark     	标记一下
    "mark": {
      "background": "#f90",
      "icon": "note",
      "rulerColour": "#f90",
      "iconColour": "#f90"
    },

    //test		测试代码
    "test": {
      "background": "#df7be6",
      "icon": "flame",
      "rulerColour": "#df7be6",
      "iconColour": "#df7be6"
    },

    //update  	优化升级点
    "update": {
      "background": "#d65d8e",
      "icon": "versions",
      "rulerColour": "#d65d8e",
      "iconColour": "#d65d8e"
    },
    // zzz
    "zzz": {
      "background": "#b0cd22",
      "icon": "versions",
      "rulerColour": "#b0cd22",
      "iconColour": "#b0cd22"
    },
    
    "?:": {
      "icon": "question",
      "foreground": "yellow",
      "iconColour": "yellow",
      "type": "text-and-comment"
    },
    "!:": {
      "foreground": "red",
      "icon": "issue-opened",
      "iconColour": "red",
      "type": "text-and-comment"
    },
    "Step:": {
      "foreground": "#7CFC00",
      "icon": "question",
      "iconColour": "green",
      "type": "text-and-comment",
      "hideFromTree": true
    },
    "c++11:": {
      "icon": "tag",
      "foreground": "violet",
      "rulerColour": "violet",
      "iconColour": "violet",
      "type": "text-and-comment",
    },
    "note:": {
      "icon": "note",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
    "param:": {
      "icon": "issue-closed",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
  },


{
    "workbench.colorTheme": "Default Light+",
    "[python]": {
        "editor.formatOnType": true
    },
    "terminal.integrated.fontFamily": "monospace",
    "editor.fontFamily": "'Courier New'",
    "todohighlight.exclude": [
        "**/node_modules/**",
        "**/bower_components/**",
        "**/dist/**",
        "**/build/**",
        "**/.vscode/**",
        "**/.github/**",
        "**/_output/**",
        "**/*.min.*",
        "**/*.map",
        "**/.next/**"
    ],
 
 
      //todo-tree 标签配置  标签兼容大小写字母(很好的功能!!!)
      "todo-tree.regex.regex": "((%|#|//|<!--|^\\s*\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
      "todo-tree.general.tags": [    
          "todo",  //添加自定义的标签成员,将在下面实现它们的样式
          "重要",
          "ywz",
          "bug",
          "tag",
          "done",
          "mark",
          "test",
          "update"
      ],
      "todo-tree.regex.regexCaseSensitive": false,
      "todo-tree.highlights.defaultHighlight": {  //如果相应变量没赋值就会使用这里的默认值
          "foreground": "black",      //字体颜色
          "background": "yellow",     //背景色
          "icon": "check",            //标签样式 check 是一个对号的样式
          "rulerColour": "yellow",    //边框颜色
          "type": "tag",              //填充色类型  可在TODO TREE 细节页面找到允许的值 
          "iconColour": "yellow"      //标签颜色
      },
      "todo-tree.highlights.customHighlight": {
   
          //todo 		需要做的功能
          "todo": {
              "icon": "alert",          //标签样式
              "background": "#c9c552",  //背景色
              "rulerColour": "#c9c552", //外框颜色
              "iconColour": "#c9c552",  //标签颜色
          },
 
        //todo 		需要做的功能
        "重要": {
            "icon": "重要",          //标签样式
            "background": "#e06e10",  //背景色
            "rulerColour": "#e06e10", //外框颜色
            "iconColour": "#e06e10",  //标签颜色
        },
        //todo 		需要做的功能
        "ywz": {
            "icon": "ywz",          //标签样式
            "background": "#1cc99d",  //背景色
            "rulerColour": "#1cc99d", //外框颜色
            "iconColour": "#1cc99d",  //标签颜色
        },
   
          //bug		必须要修复的BUG  
          "bug": {
              "background": "#eb5c5c",
              "icon": "bug",
              "rulerColour": "#eb5c5c",
              "iconColour": "#eb5c5c",
          },
   
          //tag		标签
          "tag": {
              "background": "#38b2f4",
              "icon": "tag",
              "rulerColour": "#38b2f4",
              "iconColour": "#38b2f4",
              "rulerLane": "full"
          },
   
          //done		已完成
          "done": {
              "background": "#5eec95",
              "icon": "check",
              "rulerColour": "#5eec95",
              "iconColour": "#5eec95",
          },
   
          //mark     	标记一下
          "mark": {
              "background": "#f90",
              "icon": "note",
              "rulerColour": "#f90",
              "iconColour": "#f90",
          },
   
          //test		测试代码
          "test": {
              "background": "#df7be6",
              "icon": "flame",
              "rulerColour": "#df7be6",
              "iconColour": "#df7be6",
          },
   
          //update  	优化升级点
          "update": {
              "background": "#d65d8e",
              "icon": "versions",
              "rulerColour": "#d65d8e",
              "iconColour": "#d65d8e",
          }
      },
}

{
  "[python]": {
    "editor.formatOnType": true
  },
  "terminal.integrated.fontFamily": "monospace",
  "editor.fontFamily": "'Courier New'",
  "todohighlight.exclude": ["**/node_modules/**", "**/bower_components/**", "**/dist/**", "**/build/**", "**/.vscode/**", "**/.github/**", "**/_output/**", "**/*.min.*", "**/*.map", "**/.next/**"],

  "todo-tree.regex.regex": "((%|#|--|//|<!--|^\\s*\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
  "todo-tree.general.tags": [
      "todo",
      "ywz", 
      "书本", 
      "重要", 
      "调用函数", 
      "note-tianyu", 
      "???", 
      "!!!", 
      "bug", 
      "tag", 
      "done", 
      "mark", 
      "test", 
      "zzz",
      "update",

      "?",
      "!",
      "param",
      "Step",
      "c++11",
      "note",
      "todo",  
    ],
  "todo-tree.regex.regexCaseSensitive": false,
  "todo-tree.highlights.defaultHighlight": {
    //如果相应变量没赋值就会使用这里的默认值
    "foreground": "black",      //字体颜色
    // "background": "yellow",     //背景色
    "icon": "check",            //标签样式 check 是一个对号的样式
    "rulerColour": "yellow",    //边框颜色
    "type": "tag",              //填充色类型  可在TODO TREE 细节页面找到允许的值 
    "iconColour": "yellow"      //标签颜色
  },
  "todo-tree.highlights.customHighlight": {
    //todo 		需要做的功能
    "todo": {
      "icon": "alert", //标签样式
      "background": "#c9c552", //背景色
      "rulerColour": "#c9c552", //外框颜色
      "iconColour": "#c9c552" //标签颜色
    },

    //todo 		需要做的功能
    "重要": {
      "icon": "重要", //标签样式
      "background": "#e06e10", //背景色
      "rulerColour": "#e06e10", //外框颜色
      "iconColour": "#e06e10" //标签颜色
    },
    //todo 		需要做的功能
    "ywz": {
      "icon": "ywz", //标签样式
      "background": "#1cc99d", //背景色
      "rulerColour": "#1cc99d", //外框颜色
      "iconColour": "#1cc99d" //标签颜色
    },
    "书本": {
      "icon": "书本", //标签样式
      "background": "#1cc964", //背景色
      "rulerColour": "#1cc964", //外框颜色
      "iconColour": "#1cc964" //标签颜色
    },

    "调用函数": {
      "icon": "调用函数", //标签样式
      "background": "#ad2b8d", //背景色
      "rulerColour": "#ad2b8d", //外框颜色
      "iconColour": "#ad2b8d" //标签颜色
    },
    "note-tianyu": {
      "icon": "note-tianyu", //标签样式
      "background": "#7d12e2", //背景色
      "rulerColour": "#7d12e2", //外框颜色
      "iconColour": "#7d12e2" //标签颜色
    },

    //todo 		有疑问
    "???": {
      "icon": "???", //标签样式
      "background": "#10afe0", //背景色
      "rulerColour": "#10afe0", //外框颜色
      "iconColour": "#10afe0" //标签颜色
    },

    "!!!": {
      "icon": "!!!", //标签样式
      "background": "#3cc21e", //背景色
      "rulerColour": "#3cc21e", //外框颜色
      "iconColour": "#3cc21e" //标签颜色
    },

    //bug		必须要修复的BUG
    "bug": {
      "background": "#eb5c5c",
      "icon": "bug",
      "rulerColour": "#eb5c5c",
      "iconColour": "#eb5c5c"
    },

    //tag		标签
    "tag": {
      "background": "#38b2f4",
      "icon": "tag",
      "rulerColour": "#38b2f4",
      "iconColour": "#38b2f4",
      "rulerLane": "full"
    },

    //done		已完成
    "done": {
      "background": "#5eec95",
      "icon": "check",
      "rulerColour": "#5eec95",
      "iconColour": "#5eec95"
    },

    //mark     	标记一下
    "mark": {
      "background": "#f90",
      "icon": "note",
      "rulerColour": "#f90",
      "iconColour": "#f90"
    },

    //test		测试代码
    "test": {
      "background": "#df7be6",
      "icon": "flame",
      "rulerColour": "#df7be6",
      "iconColour": "#df7be6"
    },

    //update  	优化升级点
    "update": {
      "background": "#d65d8e",
      "icon": "versions",
      "rulerColour": "#d65d8e",
      "iconColour": "#d65d8e"
    },
    // zzz
    "zzz": {
      "background": "#b0cd22",
      "icon": "versions",
      "rulerColour": "#b0cd22",
      "iconColour": "#b0cd22"
    },
    
    "?": {
      "icon": "question",
      "foreground": "yellow",
      "iconColour": "yellow",
      "type": "text-and-comment"
    },
    "!": {
      "foreground": "red",
      "icon": "issue-opened",
      "iconColour": "red",
      "type": "text-and-comment"
    },
    "Step": {
      "foreground": "#7CFC00",
      "icon": "question",
      "iconColour": "green",
      "type": "text-and-comment",
      "hideFromTree": true
    },
    "c++11": {
      "icon": "tag",
      "foreground": "violet",
      "rulerColour": "violet",
      "iconColour": "violet",
      "type": "text-and-comment",
    },
    "note": {
      "icon": "note",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
    "param": {
      "icon": "issue-closed",
      "foreground": "orange",
      "rulerColour": "orange",
      "iconColour": "orange",
      "type": "text-and-comment",
    },
  },
  "[cpp]": {
    "editor.defaultFormatter": "ms-iot.vscode-ros"
  },
  "editor.tabSize": 2,
  "git.enableSmartCommit": true,
  "workbench.colorTheme": "Default Dark+",
  "cmake.configureOnOpen": true,
  "window.zoomLevel": 2
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值