help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: enter key behaviour


From: Bernardo
Subject: Re: enter key behaviour
Date: Mon, 15 Jun 2009 17:36:48 +1000
User-agent: Thunderbird 2.0.0.21 (X11/20090302)



prad said the following on 14/06/09 17:43:
On Sun, 14 Jun 2009 16:16:41 +1000

so i just commented out this line
(define-key py-mode-map "\C-m" 'py-newline-and-indent)
in the python-mode.el file to get the desired behavior.

there's nothing from stopping you do it that way, but if you share your PC with other users, or if you don't want your changes to be clobbered when you upgrade GNU Emacs/python-mode it may be better to put customisations into your init (.emacs) file

probably something along the lines (not tested):

(add-hook 'python-mode-hook
  (lambda ()
    (define-key py-mode-map "\C-m" 'newline))) ; or the function you want

also, as an alternative to "\C-m" have a look at the kbd macro
(kbd "C-m")

C-h f kbd RET




reply via email to

[Prev in Thread] Current Thread [Next in Thread]