Skip to content

Commit

Permalink
Merge pull request #3 from araujo88/include-support-for-strings
Browse files Browse the repository at this point in the history
feat: include support for strings
  • Loading branch information
araujo88 authored Dec 16, 2024
2 parents 7126ebc + 04756d6 commit 4c03c2c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
Binary file added brainrot-0.0.3.vsix
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "https://github.com/araujo88/brainrot-vscode-support"
},
"version": "0.0.2",
"version": "0.0.3",
"engines": {
"vscode": "^1.90.0"
},
Expand Down
18 changes: 16 additions & 2 deletions syntaxes/brainrot.tmLanguage.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "Brainrot",
"scopeName": "source.brainrot",
"patterns": [
{
Expand All @@ -12,7 +13,20 @@
{
"match": "\\bbaka\\b",
"name": "support.function.builtin.brainrot"
},
{
"include": "#strings"
}
],
"repository": {
"strings": {
"patterns": [
{
"name": "string.quoted.double.brainrot",
"match": "\"(\\\\.|[^\"])*\""
}
]
}
}
]
}
}

0 comments on commit 4c03c2c

Please sign in to comment.