[Python-mode] form inserting print

2010-03-12 Thread Andreas Roehler
Hi python-mode folks, form below should speed up writing print-statements in Python a little bit. (defun druck (&optional arg) "Inserts a print statement out of current `(car kill-ring)' by default, inserts ARG instead if delivered. " (interactive "*") (lexical-let* ((name (or arg (car kil

Re: [Python-mode] form inserting print

2010-03-12 Thread Georg Brandl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 12.03.2010 10:51, schrieb Andreas Roehler: > Hi python-mode folks, > > form below should speed up writing print-statements in Python a > little bit. > > (defun druck (&optional arg) > "Inserts a print statement out of current `(car kill-ring)' b

Re: [Python-mode] form inserting print

2010-03-12 Thread Barry Warsaw
On Mar 12, 2010, at 11:21 AM, Georg Brandl wrote: >Wouldn't that be the job of one of the numerous snippet packages that are >floating around? I'm using yasnippet myself, and it works very well. >(I know that python.el has some definitions for skeleton mode, but >python-mode.el doesn't, and I'm n

Re: [Python-mode] form inserting print

2010-03-12 Thread Andreas Roehler
Georg Brandl wrote: > Am 12.03.2010 10:51, schrieb Andreas Roehler: >> Hi python-mode folks, > >> form below should speed up writing print-statements in Python a >> little bit. > >> (defun druck (&optional arg) >> "Inserts a print statement out of current `(car kill-ring)' by default, >> inser