Skip to content

Commit 31330df

Browse files
committed
Version 1.5.0
1 parent baba77a commit 31330df

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [1.5.0] The "Script Types" update
4+
- Fixed inconsistencies with ACS
5+
- Added script types support
6+
```acs
7+
script "Whatever" ENTER //<-- this one
8+
{
9+
// BLAH BLAH
10+
}
11+
```
12+
313
## [1.4.0] The "The ACS End (?)" update
414
- ACS support seems done
515
- String escaping is now supported

syntaxes/acs.tmLanguage.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@
100100
"name": "constant.numeric.acs",
101101
"match": "\\d+"
102102
},
103+
{
104+
"name": "storage.type.script.acs",
105+
"match": "(?i)(?<=^script\\s+.+?\\s+)\\w+"
106+
},
103107
{
104108
"name": "constant.hexadecimal.acs",
105109
"match": "\\s0[xX][0-9a-fA-F]+"
@@ -114,7 +118,7 @@
114118
},
115119
{
116120
"name": "constant.language.boolean.acs",
117-
"match": "\\b(?i:true|false)\\b"
121+
"match": "\\b(TRUE|FALSE)\\b"
118122
}
119123
]
120124
},

0 commit comments

Comments
 (0)