Skip to content

Instantly share code, notes, and snippets.

@DanTup
Created August 8, 2023 15:21
Show Gist options
  • Save DanTup/8ca705c94bd50f6d88b2463cbb43eca1 to your computer and use it in GitHub Desktop.
Save DanTup/8ca705c94bd50f6d88b2463cbb43eca1 to your computer and use it in GitHub Desktop.
{
"name": "Dart",
"version": "1.2.2",
"fileTypes": [
"dart"
],
"scopeName": "source.dart",
"foldingStartMarker": "\\{\\s*$",
"foldingStopMarker": "^\\s*\\}",
"patterns": [
{
"include": "#comments"
},
{
"include": "#keywords"
}
],
"repository": {
"dartdoc": {
"patterns": [
{
"contentName": "variable.other.source.dart",
"begin": "```",
"end": "```"
}
]
},
"comments": {
"patterns": [
{
"name": "comment.block.documentation.dart",
"begin": "///",
"while": "^\\s*///",
"patterns": [
{
"include": "#dartdoc"
}
]
}
]
},
"keywords": {
"patterns": [
{
"name": "keyword.cast.dart",
"match": "foo"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment