Skip to content

Commit d122d3c

Browse files
committed
v0.0.4
1 parent 6ea1cf9 commit d122d3c

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# bitloops-language README
22

3-
This is the README for the "bitloops-language" extension. After writing up a brief description, we recommend including the following sections.
3+
This is the README for the "bitloops-language" extension.
44

55
## Features
66

7-
This extension allows for color coding of the Bitloops language syntax.
7+
This extension allows for color coding of the Bitloops language syntax. You can learn more about the Bitloops language at https://bitloops.org
88

99
## Requirements
1010

@@ -24,7 +24,17 @@ No known issues.
2424

2525
## Release Notes
2626

27-
Users appreciate release notes as you update your extension.
27+
### 0.0.4
28+
29+
Added additional grammar elements including most protobuf data types
30+
31+
### 0.0.3
32+
33+
Added files icon and added main grammar elements
34+
35+
### 0.0.2
36+
37+
Added icon
2838

2939
### 0.0.1
3040

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"icon": "assets/images/Bitloops-Icon-256x256.png",
1111
"license": "MIT",
12-
"version": "0.0.3",
12+
"version": "0.0.4",
1313
"scripts": {
1414
"vs:package": "vsce package",
1515
"vs:publish": "vsce publish"

syntaxes/bitloops.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"keywords": {
1414
"patterns": [{
1515
"name": "keyword.control.bitloops",
16-
"match": "\\b(if|while|for|return|ValueObject|DTO|Props|RESTController|UseCase|Feature|string|optional|const|let|boolean)\\b"
16+
"match": "\\b(if|while|for|return|ValueObject|DTO|Props|RESTController|UseCase|Feature|optional|const|let|string|bool|int32|int64|double|float|unit32|uint64|sint32|sint64|fixed32|fixed64|sfixed32|sfixed64|bytes|is|isNot|Error|OK|Struct|enum|switch|case|default|Empty|null)\\b"
1717
}]
1818
},
1919
"strings": {

0 commit comments

Comments
 (0)