Hello All,
First of all I want to thank you for this great editor. However, I have a little problem that I can't seem to resolve. In Python mode I want to use the snippets auto completion to write a class. I type class and hit tab and I get :
class : %""" Class doc """ % %def __init__ (self): % %""" Class initialiser """ % %pass
What I want is almost the same thing but without the % signs :
class : """ Class doc """
def __init__ (self): """ Class initialiser """ pass
How can I do that ??
Thanks a lot,
Jouke