Ability to turn off italic styling #1287
-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered For now I can disable italics this way but I have to keep track of changes in this theme. There does not appear to be a way to specify {
...
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"keyword.control",
"markup.quote",
"variable.parameter",
"variable.parameter.function.language.special.self.python"
],
"settings": {
"fontStyle": ""
}
}
]
}
...
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We rely on VScode API, so what you can do is what VScode allows you to do, we can't do anything about it. This config should disable italics almost everywhere, based on your personal taste. Remove the "editor.tokenColorCustomizations": {
"[Material Theme*]": {
"comments": {
"fontStyle": ""
},
"functions": {
"fontStyle": ""
},
"keywords": {
"fontStyle": ""
},
"strings": {
"fontStyle": ""
},
"variables": {
"fontStyle": ""
},
"numbers": {
"fontStyle": ""
},
"types": {
"fontStyle": ""
},
"textMateRules": [
{
"scope": [
"markup.italic",
"markdown.italic"
],
"settings": {
"fontStyle": ""
}
}
]
}
} |
Beta Was this translation helpful? Give feedback.
We rely on VScode API, so what you can do is what VScode allows you to do, we can't do anything about it.
This config should disable italics almost everywhere, based on your personal taste. Remove the
textMateRules
section to keep italic in markdown