On 9/3/05, Barry Warsaw <[EMAIL PROTECTED]> wrote:
> On Fri, 2005-09-02 at 21:42, Guido van Rossum wrote:
> 
> I do hate having to write two parentheses -- it's more than the extra
> keystrokes.  It's that I have to use two shifted characters and I have
> to be sure to close the construct, which can be a PITA when the start of
> the function call is separated from the end by many lines.

(defun python-abbrev-print ()
  "Help me change old habits."
  (insert "print()") (backward-char 1) t)
(put 'python-abbrev-print 'no-self-insert t)
(define-abbrev python-mode-abbrev-table "print" "" 'python-abbrev-print)
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to