Skip to content

Commit 61a2e55

Browse files
committed
new keywords
1 parent e66c76c commit 61a2e55

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build-on-linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66
pull_request:
77
branches:
88
- main
9-
9+
release:
10+
types: [published]
11+
1012
concurrency:
1113
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
1214
cancel-in-progress: false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-hikolang",
33
"displayName": "vscode-hikolang",
44
"description": "Support for the hikolang language.",
5-
"version": "0.1.1",
5+
"version": "0.1.2",
66
"engines": {
77
"vscode": "^1.105.0"
88
},

syntaxes/hikolang.tmLanguage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"patterns": [
8282
{
8383
"name": "keyword.control.hikolang",
84-
"match": "\\b(if|else|for|while|switch|case|default|break|continue|return|module|import|syntax|fn|class|union|enum|throw|trap|try)\\b"
84+
"match": "\\b(if|else|for|while|switch|case|default|break|continue|return|result|module|import|syntax|fn|class|union|enum|throw|trap|try|yield|await)\\b"
8585
}
8686
]
8787
},

0 commit comments

Comments
 (0)