Augment Tasklist Highlighter

Custom syntax highlighting for Augment Code tasklist markdown files with support for different task states.

Features

This extension provides enhanced syntax highlighting for Augment Code tasklist markdown files with the following features:

  • NAME keyword highlighting: NAME: keywords appear in a distinct color
  • DESCRIPTION keyword highlighting: DESCRIPTION: keywords are highlighted
  • Task state checkboxes with different colors:
    • [ ] Not Started → White
    • [/] In Progress → Blue
    • [-] Cancelled → Red
    • [x] Completed → Green

Example

alt text

Requirements

  • VSCode 1.103.0 or higher

Extension Settings

"editor.tokenColorCustomizations": {
    "textMateRules": [
        {
            "scope": "keyword.control.tasklist.name",
            "settings": {
                "foreground": "#b8671c",
                "fontStyle": "bold"
            }
        },
        {
            "scope": "keyword.control.tasklist.description",
            "settings": {
                "foreground": "#b8671c",
                "fontStyle": "bold"
            }
        },
        {
            "scope": "constant.other.tasklist.checkbox.not-started",
            "settings": {
                "foreground": "#efecf3",
                "fontStyle": "bold"
            }
        },
        {
            "scope": "constant.other.tasklist.checkbox.in-progress",
            "settings": {
                "foreground": "#3794FF",
                "fontStyle": "bold"
            }
        },
        {
            "scope": "constant.other.tasklist.checkbox.cancelled",
            "settings": {
                "foreground": "#F44747",
                "fontStyle": "bold"
            }
        },
        {
            "scope": "constant.other.tasklist.checkbox.completed",
            "settings": {
                "foreground": "#6A9955",
                "fontStyle": "bold"
            }
        },
    ]
},

Enjoy!