Highlight method arguments in Python with Sublime Text 2

I was used to edit Python with Netbeans because it was the only editor I knew that could edit Python and even helped a bit.

Some time ago I discovered that Sublime Text 2 is better suited to my needs, so I took a step.

However, in Netbeans there is one thing that is really convenient, which is the highlighting of method arguments.

If I have a method:

send_message(self, playerId, text, channel, flags=None) 

How to change Sublime Text 2 theme so that self , playerId , text , channel and flags stand out?

+7
source share
1 answer

You can find the link to the visual theme editor here .

+1
source

All Articles