This is VS Code language (grammar) support for internal v0 format of Imparato's theatre plays.
(If you are not an Imparato developer or contributor, this grammar is of no interest to you, except to serve as VS Code grammar example.)
Currently, this package is not published in the VS Code marketplace. Instead, clone this repository :
cd $HOME/.vscode/extensions
git clone https://github.com/Imparato/language-v0.gitRestart vscode.
cd $HOME/.vscode/extensions/language-v0
git pull origin mainIn order to improve display, you can add the following in your User Settings file ($HOME/.vscode/settings.json or Preferences: Open User Settings) :
{
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": [
"heading.section.v0"
],
"settings": {
"foreground": "#dd9977",
"fontStyle": "bold"
}
}]
}
}