Chisheng Huang cph@chi-square-works.com writes:
I knew and used C-c C-b a few times. I did not know C-c C-g does the same thing as C-c C-b. Could someone tell me what Emacs command to use to unbind C-c C-g? I'd like to do it in my .emacs because I want C-g to be consistent with the rest of my Emacs usage.
(define-key slime-mode-map "\C-c\C-g" nil)
should do the trick.
Zach Beane xach@xach.com writes:
I am a little annoyed by it. I typically type "C-c", realize I am not ready to do a command yet, and hit C-g to cancel. I'm accustomed to C-g being a safe way to stop what I'm doing in emacs. Triggering a Lisp interrupt isn't what I have in mind.
OK, that's quite a good argument against C-c C-g. I removed the binding in the CVS version.
Helmut.