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

Bond

Yiwen Wang

|
9,524 installs
| (3) | Free
Providing syntax highlighting for bond files.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Bond

Providing syntax highlighting for Microsoft's Bond language's files.

Patch your theme

If the theme you are using haven't provide a color for scope "entity.name.type", you will see there's no highlight for type token:

Theme without type highlight

To resolve this, you should manually customize your color theme in your user/workspace settings following this guide. For example:

"textMateRules": [
    {
        "scope": "entity.name.type",
        "settings": {
            "foreground": "#FF0000"
        }
    }
]

Per-theme settings:

"editor.tokenColorCustomizations": {
    "[Visual Studio Dark]": {
        "textMateRules": [
            {
                "scope": "entity.name.type.bond",
                "settings": {
                    "foreground": "#FF0000"
                }
            }
        ]
    }
}

Dot forget to replace the "Visual Studio Dark" with your theme's name. After that, the file should looks like this:

Theme with type highlight

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft