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

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

Re: Binding C-'


From: Michael Heerdegen
Subject: Re: Binding C-'
Date: Wed, 15 Oct 2008 12:52:19 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (berkeley-unix)

"TongKe Xue" <tongkecantcode@gmail.com> writes:

> I can bind vip-mode to C-z with:
> (global-set-key "\C-z" ...)
>
> However, I can't find C-' with
>
> (global-set-key "\C-'" ...)
> or
> (global-set-key "\C-\'" ...)
>
> How do I do this?

(global-set-key (kbd "C-'") ...)

or

(global-set-key [?\C-'] ...)

should work.


reply via email to

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