Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
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. |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.



Most theme's don't colorize
meta.function-callas 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