美文网首页
不才的 todo-tree 配置

不才的 todo-tree 配置

作者: 谢小帅 | 来源:发表于2021-05-14 14:47 被阅读0次

    参考

    settings.json

      "todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
      "todo-tree.general.tags": [
        "TODO",
        "DONE",
        "FIXME",
        "BUG",
        "NOTE",
        "STAR"
      ],  // can add more tags with default style like 'STAR'
      "todo-tree.regex.regexCaseSensitive": false, // make TODO == todo
      "todo-tree.highlights.customHighlight": {
        "STAR": {
          // "foreground": "white",
          "background": "Gold",
          "icon": "star-fill",
          "rulerColour": "Gold",
          "iconColour": "Gold"
        },
        "DONE": {
          "foreground": "white",
          "background": "green",
          "icon": "check-circle-fill",
          "rulerColour": "green",
          "iconColour": "green"
        },
        "FIXME": {
          "foreground": "white",
          "background": "RoyalBlue",
          "icon": "gear",
          "rulerColour": "RoyalBlue",
          "iconColour": "RoyalBlue"
        },
        "BUG": {
          "foreground": "white",
          "background": "Crimson",
          "rulerColour": "Crimson",
          "iconColour": "Crimson"
        },
        "NOTE": {
          "foreground": "black",
          "icon": "bookmark-fill",
          "background": "BurlyWood",
          "rulerColour": "BurlyWood",
          "iconColour": "BurlyWood"
        },
      },
    

    相关文章

      网友评论

          本文标题:不才的 todo-tree 配置

          本文链接:https://www.haomeiwen.com/subject/qryqjltx.html