Skip to content

Commit 068cbb5

Browse files
Merge pull request #2 from ChemisTechlabs/develop
Fix escaped single quote not being recognised
2 parents ee34fb9 + 6dc36c8 commit 068cbb5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.0.2 - 2020-04-14
8+
### Changed
9+
- Fix unrecognised escaped characters in quoted strings
10+
711
## 0.0.1 - 2020-04-05
812
- Initial release

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dataprep-wrangle-language",
33
"displayName": "Cloud Dataprep Wrangle",
44
"description": "Language support for Cloud Dataprep Wrangle by Trifacta®",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "chemistechlabs",
77
"repository": {
88
"type": "git",

syntaxes/wrangle.tmLanguage.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"patterns": [
8181
{
8282
"name": "constant.character.escape",
83-
"match": "\\."
83+
"match": "\\\\."
8484
}
8585
]
8686
},

0 commit comments

Comments
 (0)