emacs-devel
[Top][All Lists]
Advanced

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

Re: C-i and TAB


From: Ivan Kanis
Subject: Re: C-i and TAB
Date: Thu, 7 Feb 2013 19:23:59 +0100
User-agent: SquirrelMail/1.4.21

>> (global-set-key (kbd "C-i") 'foo)
>> (global-set-key (kbd "TAB") 'bar)
>
> `kbd's syntax defines TAB as equivalent to C-i, so the above two
> instructions bind the same key.
>
> Try
>
> (global-set-key [?\C-i] 'foo)
> (global-set-key [tab] 'bar)

Great! Thank you.




reply via email to

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