Would it be possible to provide syntax highlighting for Please paths, such as //path/to:target, such that the text is highlighted or coloured?
It's possible for Markdown with textMateRules e.g. in settings.json:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "heading.1.markdown entity.name.section.markdown, heading.1.markdown punctuation.definition.heading.markdown",
"settings": {
"foreground": "#CD4158",
"fontStyle": "bold"
}
}
]
}
Would it be possible to provide syntax highlighting for Please paths, such as
//path/to:target, such that the text is highlighted or coloured?It's possible for Markdown with
textMateRulese.g. in settings.json: