Skip to content

Commit 94e3944

Browse files
Merge branch 'master' into dependabot/npm_and_yarn/webpack-5.102.1
2 parents e578d6e + 99f4b72 commit 94e3944

File tree

2 files changed

+22
-11
lines changed

2 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,26 @@
33
All notable changes to the HubSpot VS Code extension will be documented in this file.
44

55
## [1.3.2]
6+
67
- Fix to telemetry
78

89
## [1.3.1]
10+
911
- Minor bug fixes to module creation and fetch
1012

1113
## [1.3.0]
14+
1215
- Fix `is not` token in highlighting
1316
- Minor updates to feedback form
1417
- Updated HubL snippets
1518
- Migrates from using HubSpot `cli-lib` to `local-dev-lib`
1619

1720
## [1.2.2]
21+
1822
- Remote directory contents now properly sort alphabetically
1923

2024
## [1.2.1]
25+
2126
- Adds HubL auto-detect. Will now prompt to switch project language when HubL is detected.
2227

2328
## [1.1.1]

syntaxes/hubl.json

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,26 @@
22
"name": "hubl",
33
"scopeName": "source.hubl",
44
"comment": "hubl Templates",
5-
"injectionSelector": "L:text.css.hubl, L:text.html.hubl",
5+
"injectionSelector": "L:text.css.hubl - comment, L:text.html.hubl - comment",
66
"foldingStartMarker": "({%\\s*(block|filter|for|if|macro|raw))",
77
"foldingStopMarker": "({%\\s*(endblock|endfilter|endfor|endif|endmacro|endraw)\\s*%})",
88
"patterns": [
9+
{
10+
"begin": "{#-?",
11+
"beginCaptures": {
12+
"0": {
13+
"name": "punctuation.definition.comment.begin.hubl"
14+
}
15+
},
16+
"end": "-?#}",
17+
"endCaptures": {
18+
"0": {
19+
"name": "punctuation.definition.comment.end.hubl"
20+
}
21+
},
22+
"name": "comment.block.hubl",
23+
"contentName": "comment.block.hubl"
24+
},
925
{
1026
"begin": "({%)\\s*(raw)\\s*(%})",
1127
"captures": {
@@ -22,16 +38,6 @@
2238
"end": "({%)\\s*(endraw)\\s*(%})",
2339
"name": "comment.block.hubl.raw"
2440
},
25-
{
26-
"begin": "{#-?",
27-
"captures": [
28-
{
29-
"name": "entity.other.hubl.delimiter.comment"
30-
}
31-
],
32-
"end": "-?#}",
33-
"name": "comment.block.hubl"
34-
},
3541
{
3642
"begin": "{{-?",
3743
"captures": [

0 commit comments

Comments
 (0)