Skip to content

Commit 9021ee0

Browse files
authored
Fix the syntax highlighting when using a period in a variable name when using it in a string template. (#74)
Related to the fix for #71. #71 (already fixed) tracked the syntax error for this pattern. This fixes the syntax highlighting for the pattern.
1 parent 790d2ad commit 9021ee0

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.14.1
2+
3+
## Bug Fixes
4+
5+
* ([#71](https://github.com/harrisont/fastbuild-vscode/issues/71)) Fix the syntax highlighting when using a period in a variable name when using it in a string template.
6+
17
# v0.14.0
28

39
## New Features

fastbuild.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"patterns": [
7777
{
7878
"name": "constant.character.escape.fastbuild",
79-
"match": "\\^.|\\$[\\w]+\\$|%\\d+"
79+
"match": "\\^.|\\$[\\w\\.]+\\$|%\\d+"
8080
}
8181
]
8282
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "fastbuild-support",
33
"displayName": "FASTBuild Support",
44
"description": "FASTBuild language support. Includes go-to definition, find references, variable evaluation, syntax errors, etc.",
5-
"version": "0.14.0",
5+
"version": "0.14.1",
66
"preview": true,
77
"publisher": "HarrisonT",
88
"author": {

0 commit comments

Comments
 (0)