Remove other keywords
This commit is contained in:
parent
d4452f197a
commit
40a3cfc9a2
1 changed files with 10 additions and 19 deletions
|
@ -46,6 +46,16 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
|||
* Override all syntax tokens
|
||||
*/
|
||||
customTokens: [
|
||||
{
|
||||
name: 'Keyword Control',
|
||||
scope: [
|
||||
'keyword.control'
|
||||
],
|
||||
settings: {
|
||||
foreground: theme.scheme.base.cyan,
|
||||
fontStyle: 'italic'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Markdown - Blockquote',
|
||||
scope: [
|
||||
|
@ -74,25 +84,6 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
|||
foreground: theme.scheme.base.pink
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Other Keywords',
|
||||
scope: [
|
||||
'keyword.other'
|
||||
],
|
||||
settings: {
|
||||
foreground: theme.scheme.base.orange
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Keyword Control',
|
||||
scope: [
|
||||
'keyword.control'
|
||||
],
|
||||
settings: {
|
||||
foreground: theme.scheme.base.cyan,
|
||||
fontStyle: 'italic'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'JSON Key - Level 0',
|
||||
scope: [
|
||||
|
|
Loading…
Reference in a new issue