Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryify committed Jul 4, 2019
1 parent 28f4ca5 commit 1138b93
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CHANGELOG
## 2.25.2 | 2019.07.04
## 2.25.3 | 2019.07.04
- Fixed C++ highlight error [#313](https://github.com/Binaryify/OneDark-Pro/issues/313)

## 2.25.1 | 2019.07.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.25.2",
"version": "2.25.3",
"publisher": "zhuangtongfa",
"bugs": {
"url": "https://github.com/Binaryify/OneDark-Pro/issues"
Expand Down
4 changes: 2 additions & 2 deletions src/syntax.js
Original file line number Diff line number Diff line change
Expand Up @@ -1761,11 +1761,11 @@ const configFactory = type => {
scope: ['punctuation.definition.tag.xi']
},
{
name: 'C++ entity name label',
name: 'C++/C#',
settings: {
foreground: colorObj['chalky']
},
scope: ['entity.name.label.cs']
scope: ['entity.name.label.cs','entity.name.scope-resolution.function.call']
}
]

Expand Down
5 changes: 3 additions & 2 deletions themes/OneDark-Pro-bold.json
Original file line number Diff line number Diff line change
Expand Up @@ -1887,12 +1887,13 @@
]
},
{
"name": "C++ entity name label",
"name": "C++/C#",
"settings": {
"foreground": "#E5C07B"
},
"scope": [
"entity.name.label.cs"
"entity.name.label.cs",
"entity.name.scope-resolution.function.call"
]
}
]
Expand Down
5 changes: 3 additions & 2 deletions themes/OneDark-Pro-vivid.json
Original file line number Diff line number Diff line change
Expand Up @@ -1857,12 +1857,13 @@
]
},
{
"name": "C++ entity name label",
"name": "C++/C#",
"settings": {
"foreground": "#e5c07b"
},
"scope": [
"entity.name.label.cs"
"entity.name.label.cs",
"entity.name.scope-resolution.function.call"
]
}
]
Expand Down
5 changes: 3 additions & 2 deletions themes/OneDark-Pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -1857,12 +1857,13 @@
]
},
{
"name": "C++ entity name label",
"name": "C++/C#",
"settings": {
"foreground": "#e5c07b"
},
"scope": [
"entity.name.label.cs"
"entity.name.label.cs",
"entity.name.scope-resolution.function.call"
]
}
]
Expand Down

0 comments on commit 1138b93

Please sign in to comment.