Skip to content

Commit

Permalink
Fixed ts if/for/while statements highlight error #325, Fixed subclass…
Browse files Browse the repository at this point in the history
… highlight error #320
  • Loading branch information
Binaryify committed Aug 8, 2019
1 parent 6d719c9 commit dfcab8f
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 14 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG
## 2.26.1 | 2019.08.03
## 2.26.3 | 2019.08.08
- Fixed ts if/for/while statements highlight error [#325](https://github.com/Binaryify/OneDark-Pro/issues/325)

- Fixed subclass highlight error [#320](https://github.com/Binaryify/OneDark-Pro/issues/320)


## 2.26.2 | 2019.08.03
- Change warning color to #d19a66 [#324](https://github.com/Binaryify/OneDark-Pro/issues/324)

## 2.26.1 | 2019.08.03
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Material-theme",
"displayName": "One Dark Pro",
"description": "Atom's iconic One Dark theme for Visual Studio Code",
"version": "2.26.2",
"version": "2.26.3",
"publisher": "zhuangtongfa",
"bugs": {
"url": "https://github.com/Binaryify/OneDark-Pro/issues"
Expand Down
14 changes: 11 additions & 3 deletions src/syntax.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ const configFactory = type => {
},
{
name: 'operator logical',
scope: 'keyword.operator.logical.js',
scope: 'keyword.operator.logical',
settings: {
foreground: colorObj['fountainBlue']
}
Expand Down Expand Up @@ -807,12 +807,20 @@ const configFactory = type => {
}
},
{
name: 'Strings, Inherited Class',
scope: 'string, entity.other.inherited-class',
name: 'Strings',
scope: 'string',
settings: {
foreground: colorObj['green']
}
},
{
name: 'Inherited Class',
scope: 'entity.other.inherited-class',
settings: {
foreground: colorObj['chalky']
}
},

{
name: 'Constant other symbol',
scope: 'constant.other.symbol',
Expand Down
13 changes: 10 additions & 3 deletions themes/OneDark-Pro-bold.json
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
},
{
"name": "operator logical",
"scope": "keyword.operator.logical.js",
"scope": "keyword.operator.logical",
"settings": {
"foreground": "#56b6c2"
}
Expand Down Expand Up @@ -862,12 +862,19 @@
}
},
{
"name": "Strings, Inherited Class",
"scope": "string, entity.other.inherited-class",
"name": "Strings",
"scope": "string",
"settings": {
"foreground": "#98c379"
}
},
{
"name": "Inherited Class",
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#E5C07B"
}
},
{
"name": "Constant other symbol",
"scope": "constant.other.symbol",
Expand Down
13 changes: 10 additions & 3 deletions themes/OneDark-Pro-vivid.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
},
{
"name": "operator logical",
"scope": "keyword.operator.logical.js",
"scope": "keyword.operator.logical",
"settings": {
"foreground": "#2bbac5"
}
Expand Down Expand Up @@ -832,12 +832,19 @@
}
},
{
"name": "Strings, Inherited Class",
"scope": "string, entity.other.inherited-class",
"name": "Strings",
"scope": "string",
"settings": {
"foreground": "#89ca78"
}
},
{
"name": "Inherited Class",
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#e5c07b"
}
},
{
"name": "Constant other symbol",
"scope": "constant.other.symbol",
Expand Down
13 changes: 10 additions & 3 deletions themes/OneDark-Pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
},
{
"name": "operator logical",
"scope": "keyword.operator.logical.js",
"scope": "keyword.operator.logical",
"settings": {
"foreground": "#56b6c2"
}
Expand Down Expand Up @@ -832,12 +832,19 @@
}
},
{
"name": "Strings, Inherited Class",
"scope": "string, entity.other.inherited-class",
"name": "Strings",
"scope": "string",
"settings": {
"foreground": "#98c379"
}
},
{
"name": "Inherited Class",
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#e5c07b"
}
},
{
"name": "Constant other symbol",
"scope": "constant.other.symbol",
Expand Down

0 comments on commit dfcab8f

Please sign in to comment.