Python Forum
How to customize VS Code setting.json?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to customize VS Code setting.json?
#1
Hey,

I want to customize the VS Code's settings.json, that matplotlib-functions will highlighted in the same color as built-in functions.

I wrote this already, but I don't know, what's the scope's name (instead of "meta.function"), I have to customize:

{
    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": "meta.function",
                "settings": {
                    "foreground": "#FF0000",
                    "fontStyle": "bold"
                }
            }
        ]

    }
}
Reply
#2
this may help:
VS code docs
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020