parent
d3448435c4
commit
db34633c36
|
@ -1,6 +1,11 @@
|
|||
# 更新日志
|
||||
|
||||
|
||||
## [1.3.2] 2018-12-12
|
||||
- 移除ts的异常语法高亮
|
||||
- 优化常量的高亮
|
||||
|
||||
|
||||
## [1.3.1] 2018-12-11
|
||||
- 优化js/ts的语法高亮
|
||||
- 优化md的高亮
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"displayName": "米白色主题",
|
||||
"description": "🔥 米白色主题",
|
||||
"icon": "logo.png",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.2",
|
||||
"publisher": "yutent",
|
||||
"author": "Yutent [@yutent]",
|
||||
"engines": {
|
||||
|
|
|
@ -152,7 +152,7 @@ module.exports = [
|
|||
name: 'Variables constant',
|
||||
scope: ['variable.other.constant'],
|
||||
settings: {
|
||||
foreground: vars.red1
|
||||
foreground: vars.blue2
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -11,8 +11,7 @@ module.exports = [
|
|||
'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',
|
||||
'variable.other.object.ts'
|
||||
'meta.property.class.js variable.other.class.js'
|
||||
],
|
||||
settings: {
|
||||
fontStyle: 'bold italic',
|
||||
|
|
|
@ -296,7 +296,7 @@
|
|||
"name": "Variables constant",
|
||||
"scope": "variable.other.constant",
|
||||
"settings": {
|
||||
"foreground": "#ff4628"
|
||||
"foreground": "#0096ff"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -484,7 +484,7 @@
|
|||
},
|
||||
{
|
||||
"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, variable.other.object.ts",
|
||||
"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",
|
||||
"settings": {
|
||||
"fontStyle": "bold italic",
|
||||
"foreground": "#ffb62c"
|
||||
|
|
Loading…
Reference in New Issue