In shell mode on emacs, the current key binding for quitting the shell mode ('comint-interrupt-subjob) is "\C-c \C-c", and I want to change it to "\C-c" as in ordinary linux shell. I tried

(add-hook 'shell-mode-hook '(lambda ()
  (local-set-key "\C-c" 'comint-interrupt-subjob)
))

But it did not work. Probably I need to disable the prefix assigned to "\C-c". How can I do that?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Try this:

(eval-after-load "shell"
  '(define-key shell-mode-map (kbd "C-c") 'comint-interrupt-subjob))

In general, when you define keys you should define them in particular keymaps, as opposed to just hoping the local-set-key does what you want.

Note: I prefer using kbd for describing keys, your "\C-c" would work just fine.

link|improve this answer
Thank you again. Good to know about kbd. I tried it but after "\C-", it still seems to be waiting for continuation, meaning that suffix is still active. Any ideas why this is so? – sawa Jun 24 '11 at 23:37
1  
On 23.3, it worked. Thank you. – sawa Jun 25 '11 at 21:42
feedback
(define-key (current-local-map) "^C" 'comint-interrupt-subjob)

This will do the work without the error checking of local-set-key

link|improve this answer
I tried this, but it returns Wrong type argument: keymapp, nil. – sawa Jun 24 '11 at 23:38
@sawa: What version of emacs are you using? It works fine for me in Emacs 23.3.1 Please note that ^C is a literal ^C (meaning type ^Q^C) or you can use the (kbd "C-c") thing that Trey described. – Seth Robertson Jun 24 '11 at 23:50
I was trying it on 23.2, and I upgraded to 23.3. This time, Trey's solution worked but yours didn't. Thanks anyway for help. It is often said that emacs has few bugs, I feel the opposite. – sawa Jun 25 '11 at 21:43
It turned out that a library called 'tabbarl.el' was interfering. The problem is solved. – sawa Jun 25 '11 at 22:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.