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: JS
Subject: Re: How to change keys for uncomment (C-u C-c C-c)?
Date: Thu, 21 Apr 2005 20:51:36 +0200
User-agent: KNode/0.7.7

Kevin Rodgers wrote:

> 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"
> 

I just wrote this in my .emacs file:


(add-hook 'this-major-mode-hook
          (lambda ()
            (local-set-key "\C-cc" 'uncomment-region)))




But when I restart emacs the program is split in two and I get this error:



An error has occurred while loading `/home/johs/.emacs':

Symbol's value as variable is void:           

To ensure normal operation, you should investigate the cause
of the error in your initialization file and remove it.  Start
Emacs with the `--debug-init' option to view a complete error
backtrace
Loading view...done



reply via email to

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