parent
1aa0fc4cea
commit
36ce6a6aea
|
@ -1,7 +1,8 @@
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
## [1.3.3] 2018-12-16
|
## [1.3.4] 2018-12-16
|
||||||
- 支持html模板中mvvm指令高亮
|
- 支持html模板中mvvm指令高亮
|
||||||
|
- 优化html特殊符号的高亮
|
||||||
|
|
||||||
|
|
||||||
## [1.3.2] 2018-12-12
|
## [1.3.2] 2018-12-12
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"displayName": "米白色主题",
|
"displayName": "米白色主题",
|
||||||
"description": "🔥 米白色主题",
|
"description": "🔥 米白色主题",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
"version": "1.3.3",
|
"version": "1.3.4",
|
||||||
"publisher": "yutent",
|
"publisher": "yutent",
|
||||||
"author": "Yutent [@yutent]",
|
"author": "Yutent [@yutent]",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
12
src/html.js
12
src/html.js
|
@ -45,5 +45,17 @@ module.exports = [
|
||||||
settings: {
|
settings: {
|
||||||
foreground: vars.magenta1
|
foreground: vars.magenta1
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'hexadecimal & character',
|
||||||
|
scope: [
|
||||||
|
'constant.character.entity.named',
|
||||||
|
'constant.character.entity.named punctuation.definition.entity.html',
|
||||||
|
'constant.character.entity.numeric.hexadecimal.html',
|
||||||
|
'constant.character.entity.numeric.hexadecimal.html punctuation.definition.entity.html'
|
||||||
|
],
|
||||||
|
settings: {
|
||||||
|
foreground: vars.blue1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -496,6 +496,13 @@
|
||||||
"foreground": "#be7ee7"
|
"foreground": "#be7ee7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "hexadecimal & character",
|
||||||
|
"scope": "constant.character.entity.named, constant.character.entity.named punctuation.definition.entity.html, constant.character.entity.numeric.hexadecimal.html, constant.character.entity.numeric.hexadecimal.html punctuation.definition.entity.html",
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#70acf7"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Class extends, build-in, dom",
|
"name": "Class extends, build-in, dom",
|
||||||
"scope": "support.type.object.console.js, support.type.object.module.js, support.type.object.dom.js, support.constant.math, meta.class.extends.js variable.other.readwrite.js, meta.function-call.static.without-arguments.js variable.other.class.js, meta.function-call.static.with-arguments.js variable.other.class.js, meta.property.class.js variable.other.class.js",
|
"scope": "support.type.object.console.js, support.type.object.module.js, support.type.object.dom.js, support.constant.math, meta.class.extends.js variable.other.readwrite.js, meta.function-call.static.without-arguments.js variable.other.class.js, meta.function-call.static.with-arguments.js variable.other.class.js, meta.property.class.js variable.other.class.js",
|
||||||
|
|
Loading…
Reference in New Issue