Jesse Looney
Jesse Looney

Reputation: 89

Change the styling of function arguments in VS Code

I'm trying to edit the styling in my Visual Studio Code workspace and I don't know how to edit the styling of function arguments. I have found that you can style parameters (using textMateRules and "scope" = "variable.parameter") but can't find anything on styling arguments (when calling the function as opposed to defining it.)

Hopefully someone could find me the textMateRules scope name or some other way of getting at it in VS Code settings. Thanks in advance!

Upvotes: 0

Views: 1076

Answers (1)

Jesse Looney
Jesse Looney

Reputation: 89

Solution found: It is possible to inspect scopes using Developer: Inspect TM Scopes in the Command Palette. I was able to find the setting which was meta.function-call.arguments.python

Upvotes: 2

Related Questions