Skip to content

Commit db757b7

Browse files
committed
Fix for #3
1 parent 83f6526 commit db757b7

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ No known issues.
2424

2525
## Release Notes
2626

27+
### 0.0.9
28+
29+
Fixed issue #5 causing comments not to display properly
30+
2731
### 0.0.8
2832

2933
Added missing language elements and relational operators

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-language-logo-256x256.png",
1111
"license": "MIT",
12-
"version": "0.0.8",
12+
"version": "0.0.9",
1313
"scripts": {
1414
"vs:package": "vsce package",
1515
"vs:publish": "vsce publish"

syntaxes/bitloops.tmLanguage.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
33
"name": "Bitloops",
44
"patterns": [
5-
{
6-
"include": "#keywords"
7-
},
85
{
96
"include": "#numeric"
107
},
@@ -17,14 +14,17 @@
1714
{
1815
"include": "#variables"
1916
},
20-
{
21-
"include": "#comments"
22-
},
2317
{
2418
"include": "#bitloopsClasses"
2519
},
2620
{
2721
"include": "#myClasses"
22+
},
23+
{
24+
"include": "#comments"
25+
},
26+
{
27+
"include": "#keywords"
2828
}
2929
],
3030
"repository": {
@@ -119,7 +119,7 @@
119119
"patterns": [
120120
{
121121
"name": "comment.line.double-slash.bitloops",
122-
"match": "//.*$"
122+
"match": "\\/\\/.*?$"
123123
},
124124
{
125125
"name": "comment.block.bitloops",

0 commit comments

Comments
 (0)