2010/3/19 Reinout van Rees <rein...@vanrees.org>:
> On 03/19/2010 10:57 AM, Deniz Dogan wrote:
>>
>> 2010/3/19 Reinout van Rees<rein...@vanrees.org>:
>>>
>>> (What I don't know is where in python mode he found a ctrl-h binding,
>>> btw).
>>>
>>
>> In python-mode.el with py-version "5.1.0+" whatever that means:
>>
>> Line 692:
>>   (define-key py-mode-map "\C-c\C-h"  'py-help-at-point)
>
> Ouch.  Yes, that's evil.  It breaks a major emacs convention.
>
> ctrl-h *is* sadly the logical key for some help-related function.  Would
> "ctrl-c h" be an alternative?
>

Unfortunately, that breaks yet another convention, which is that C-c
<letter> are for users and should not be bound to anything in any
external mode. C-c ? would be okay, but that's already bound to
py-describe-mode. Maybe C-c C-? would work, but I'm not sure how that
is recognized by terminals.

-- 
Deniz Dogan
_______________________________________________
Python-mode mailing list
Python-mode@python.org
http://mail.python.org/mailman/listinfo/python-mode

Reply via email to