Monokai / monokai-pro-vscode

Issue tracking for Monokai Pro for Visual Studio Code
321 stars 8 forks source link

Multi-line comments non italic font settings (feature request) #328

Closed DolphinDream closed 1 year ago

DolphinDream commented 1 year ago

I love this theme (for VSCode) but there is one major thing that stops me from using it more often which is the fact the multi-line comments have italic fonts. Often time I have ascii diagrams displayed in these comment sections and the italic font messes up the diagrams. Is it possible to have the comments NOT italicized or at least an option to turn the italics off for these comment scopes ? (see screenshot .. Monokai vs default VSCode dark theme. This simple ascii diagram example is not that bad having italic font, but for some other more complex ascii diagrams italics messes up the diagram enough to make it unreadable).

multi-line-comment-monokai-pro

Monokai commented 1 year ago

I understand. In this case it's best to add this to settings.json:

"editor.tokenColorCustomizations": {
    "comments": {
        "fontStyle": "normal"
    }
}