diff --git a/CHANGELOG.md b/CHANGELOG.md index d93d999..4420826 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # 更新日志 -## [1.6.4] 2022-03-16 +## [1.6.5] 2022-03-16 - 修复jsx, tsx着色问题 +- 支持js`?.` - 增加对dart语言的字符串模板的着色支持 ## [1.6.2] 2022-03-14 diff --git a/data/logs/out.log b/data/logs/out.log index 692d5ef..20269b9 100644 --- a/data/logs/out.log +++ b/data/logs/out.log @@ -78,3 +78,7 @@ Build complete... Build complete... Build complete... Build complete... +Build complete... +Build complete... +Build complete... +Build complete... diff --git a/package.json b/package.json index 4033661..a960ba7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "one plain", "description": "🔥 米白色主题", "icon": "logo.png", - "version": "1.6.4", + "version": "1.6.5", "publisher": "yutent", "author": "Yutent [@yutent]", "engines": { diff --git a/src/base.js b/src/base.js index 387f0e9..89623b1 100644 --- a/src/base.js +++ b/src/base.js @@ -58,8 +58,8 @@ module.exports = [ scope: [ 'keyword.control', 'meta.tag', - 'punctuation.accessor.js', - 'punctuation.accessor.ts', + 'punctuation.accessor', + 'punctuation.accessor.optional', 'punctuation.definition.tag', 'punctuation.separator.inheritance.php', 'punctuation.definition.tag.html', diff --git a/themes/color-theme.json b/themes/color-theme.json index 0a8c5ce..58e113f 100644 --- a/themes/color-theme.json +++ b/themes/color-theme.json @@ -229,7 +229,7 @@ }, { "name": "Operator, Misc", - "scope": "keyword.control, meta.tag, punctuation.accessor.js, punctuation.accessor.ts, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.section.embedded, keyword.other.template, keyword.other.substitution", + "scope": "keyword.control, meta.tag, punctuation.accessor, punctuation.accessor.optional, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.section.embedded, keyword.other.template, keyword.other.substitution", "settings": { "foreground": "#ff5370" }