Skip to content

Commit 73fd0aa

Browse files
authored
Berry syntax highlighter for multiline f-strings (#24155)
1 parent dc2ae50 commit 73fd0aa

File tree

9 files changed

+199
-236
lines changed

9 files changed

+199
-236
lines changed

lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.1.0/syntaxes/berry.json

Lines changed: 0 additions & 153 deletions
This file was deleted.

lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.1.0/syntaxes/bytecode.json

Lines changed: 0 additions & 58 deletions
This file was deleted.

lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.1.0/.vsixmanifest renamed to lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.2.0/.vsixmanifest

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,8 @@
1111
<Properties>
1212
<Property Id="Microsoft.VisualStudio.Code.Engine" Value="^1.15.1" />
1313
<Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="" />
14-
15-
16-
17-
18-
1914
<Property Id="Microsoft.VisualStudio.Services.GitHubFlavoredMarkdown" Value="true" />
20-
21-
2215
</Properties>
23-
24-
2516
</Metadata>
2617
<Installation>
2718
<InstallationTarget Id="Microsoft.VisualStudio.Code"/>

lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.1.0/CHANGELOG.md renamed to lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.2.0/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66
## [Unreleased]
77
- Initial release
88
- add support for f-strings, `_class` and indent on `do`
9+
- add support for multiline f-strings
10+
- remove bytecode
File renamed without changes.

lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.1.0/package.json renamed to lib/libesp32/berry/tools/plugins/vscode/skiars.berry-1.2.0/package.json

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "berry",
33
"displayName": "Berry Script Language",
44
"description": "A small embedded script language.",
5-
"version": "1.1.0",
5+
"version": "1.2.0",
6+
"icon": "berry-icon.png",
67
"publisher": "skiars",
78
"engines": {
89
"vscode": "^1.15.1"
@@ -22,28 +23,13 @@
2223
".be"
2324
],
2425
"configuration": "./berry-configuration.json"
25-
},
26-
{
27-
"id": "berry-bytecode",
28-
"aliases": [
29-
"Berry Bytecode",
30-
"berry bytecode"
31-
],
32-
"extensions": [
33-
"berry.bytecode"
34-
]
3526
}
3627
],
3728
"grammars": [
3829
{
3930
"language": "berry",
4031
"scopeName": "source.berry",
4132
"path": "./syntaxes/berry.json"
42-
},
43-
{
44-
"language": "berry-bytecode",
45-
"scopeName": "source.berry.bytecode",
46-
"path": "./syntaxes/bytecode.json"
4733
}
4834
]
4935
},

0 commit comments

Comments
 (0)