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

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

Re: Hello,how can i use the comma and dot in the config file .emacs


From: Jambunathan K
Subject: Re: Hello,how can i use the comma and dot in the config file .emacs
Date: Wed, 22 Feb 2012 13:58:21 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.93 (windows-nt)

robby lee <justfan.b@gmail.com> writes:

> (global-set-key "\C-\." 'end-of-buffer)
> (global-set-key "\C-\," 'beginning-of-buffer)
>  
> the Ctrl-, and Ctrl-.
> but it doesn't work. how to escape the symbol "comma" and "dot"

(global-set-key [?\C-.] 'end-of-buffer)
(global-set-key [?\C-,] 'beginning-of-buffer)

-- 



reply via email to

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