Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>NoteNew to Visual Studio Code? Get it now.
Note

Note

ciiqr

|
10,169 installs
| (2) | Free
note syntax
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

note

note syntax by ciiqr

sample

File extensions

  • .txt and .todo by default
  • other extensions can be configured in your settings.json:
"files.associations": {
    "*.exp": "note"
}

Customize

Font colors/styles

The defaults work best with monokai, but can be customized for other themes in settings.json

"editor.tokenColorCustomizations": {
    "textMateRules": [
        // Note
        {
            // #
            "scope": "source.note comment",
            "settings": {
                "foreground": "#88846f"
            }
        },
        {
            // %
            "scope": "source.note string",
            "settings": {
                "foreground": "#E6DB74"
            }
        },
        {
            // x
            "scope": "source.note entity.name.function",
            "settings": {
                "foreground": "#A6E22E"
            }
        },
        {
            // -
            "scope": "source.note variable.parameter",
            "settings": {
                "foreground": "#FD971F",
                "fontStyle": ""
            }
        },
        {
            // ?
            "scope": "source.note support.function",
            "settings": {
                "foreground": "#66D9EF"
            }
        },
        {
            // ~
            "scope": "source.note support.constant",
            "settings": {
                "foreground": "#66D9EF"
            }
        },
        {
            // !
            "scope": "source.note keyword",
            "settings": {
                "foreground": "#F92672"
            }
        },
        {
            // !!
            "scope": "source.note invalid",
            "settings": {
                "foreground": "#F92672",
                "fontStyle": "bold underline"
            }
        }
    ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft