-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function invocation not colored consistently #127
Comments
Is this going to be fixed any time soon? also, what about method calls? can we get these colroed as well? |
Keep in mind for now you could highlight function calls by adding your own override in User settings by something like "editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function-call.generic",
"settings": {
"foreground":"#A6E22E"
}
}
]
} No option to do separate method call coloring for now unfortunately. |
@Adanteh I tried adding this to my settings.json but still no change to the function call color.. |
@honkeat you probably placed the code in the wrong scope. It should look like this: |
Still doesn't work for me. Any reason why this isn't set by default, this is the only IDE I've used with this issue. |
@matt-fleming the extension "Python for VSCode" was what restricted the function coloring. After disabling it and adding the overwrite from the top everything worked fine |
Can we add proper instructions on the overwrite workaround? This would be very helpful. |
Every function and method call is marked by As for overriding the color themes, there are some instructions here. They do boil down to what has already been proposed in this thread:
|
why this problem has not been fixed for 2 years. |
I hope this problem has not been forgotten |
Its been ~3 years and this issue is still open ( T _ T ) . Please FIX this ... |
I condemn Visual Studio Code developers and Microsoft for delaying this issue for 4 years and pointing people to this abandoned repository. |
https://marketplace.visualstudio.com/items?itemName=evgeniypeshkov.syntax-highlighter |
@Real-Gecko |
Most theme's don't colorize
meta.function-call
as the idea is that it should cover function names, including the full path, and all parameters (see https://www.sublimetext.com/docs/3/scope_naming.html)I good scope to give function names is
support.function
The text was updated successfully, but these errors were encountered: