Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highlight method arguments in Python with Sublime Text 2

I was used to editing Python with Netbeans, because it was the only editor I knew that could edit Python and even added a little support.

Some time ago, I found that Sublime Text 2 suits my needs better, so I made the step.

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

If I have a method:

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

how to change the theme of Sublime Text 2 so, that self, playerId, text, channel and flags are highlighted as well?

like image 933
Aart den Braber Avatar asked Dec 25 '12 14:12

Aart den Braber


1 Answers

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

like image 158
André Avatar answered Sep 29 '22 19:09

André