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

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

Re: How to change keys for uncomment (C-u C-c C-c)?


From: Kevin Rodgers
Subject: Re: How to change keys for uncomment (C-u C-c C-c)?
Date: Thu, 21 Apr 2005 09:58:05 -0600
User-agent: Mozilla Thunderbird 0.9 (X11/20041105)

JS wrote:
> When I want to uncomment someting I first need to press C-u followed by C-c
> C-c but that is not very handy. Is it possible to reconfigure C-u C-c C-c
> into ie.:
>
> C-c C-c C-v instead?

All things are possible.  But `C-c C-c C-v' is not necessarily a good
choice, because its prefix key `C-c C-c' is already bound to
comment-region (as you know) and all `C-c C-LETTER' keys are reserved
for major modes.  But since all of the `C-c LETTER' keys are reserved
for users, how about `C-c c' or `C-c u':

(add-hook 'this-major-mode-hook         ; e.g. 'c-mode-common-hook
          (lambda ()
            (local-set-key "\C-cc" 'uncomment-region))) ; or "\C-cu"

--
Kevin Rodgers





reply via email to

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