Skip to content

Commit

Permalink
Enable bracket matching in strings and comments (i.e., restore old be…
Browse files Browse the repository at this point in the history
…havior)
  • Loading branch information
sungshik committed Oct 22, 2024
1 parent d1097f1 commit f94e6ad
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions rascal-vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,20 @@
{
"language": "rascalmpl",
"scopeName": "source.rascalmpl",
"path": "./syntaxes/rascal.tmGrammar.json"
"path": "./syntaxes/rascal.tmGrammar.json",
"tokenTypes": {
"string": "other",
"comment": "other"
}
},
{
"language": "parametric-rascalmpl",
"scopeName": "source.parametric-rascalmpl",
"path": "./syntaxes/parametric.tmGrammar.json"
"path": "./syntaxes/parametric.tmGrammar.json",
"tokenTypes": {
"string": "other",
"comment": "other"
}
}
],
"semanticTokenScopes": [
Expand Down

0 comments on commit f94e6ad

Please sign in to comment.