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
1. Not the right list to be asking in, use the Users list instead http://www.geany.org/Support/MailingList#geany-users
2. Python snippets do not seem to be defined right neither in the snippets.conf download in the Extras area nor current svn trunk . You can fix the behavior for yourself by replacing \t occurrences in snippets.conf with %ws% or \t%cursor% as far as i can tell. Probably a bug to be reported, since more python snippets are to be bundled with geany 0.16.
Best regards, Karel Kolman
On Thu, Feb 5, 2009 at 2:16 PM, jouke hijlkema Jouke.Hylkema@onera.fr wrote:
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
Geany-i18n mailing list Geany-i18n@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany-i18n
Thanks for your quick response ... sory I took the wrong list. I tried using %ws% in snippet conf but that didn't work.
You want me to report it as a bug ?
Jouke
Karel Kolman wrote:
- Not the right list to be asking in, use the Users list instead
http://www.geany.org/Support/MailingList#geany-users
- Python snippets do not seem to be defined right neither in the
snippets.conf download in the Extras area nor current svn trunk . You can fix the behavior for yourself by replacing \t occurrences in snippets.conf with %ws% or \t%cursor% as far as i can tell. Probably a bug to be reported, since more python snippets are to be bundled with geany 0.16.
Best regards, Karel Kolman
On Thu, Feb 5, 2009 at 2:16 PM, jouke hijlkema Jouke.Hylkema@onera.fr wrote:
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
Geany-i18n mailing list Geany-i18n@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany-i18n
On Thu, 05 Feb 2009 17:16:48 +0100, jouke hijlkema Jouke.Hylkema@onera.fr wrote:
Thanks for your quick response ... sory I took the wrong list. I tried using %ws% in snippet conf but that didn't work.
You want me to report it as a bug ?
Karel already did:
https://sourceforge.net/tracker/?func=detail&atid=787791&aid=2568588...
Jouke, thanks for reporting this, fixed in current SVN version.
Regards, Enrico