Re: Key binding syntax

2005-04-11 Thread Kevin Rodgers
Greg Novak wrote: > I'm having a difficult time rebinding Shift-tab or Control tab. I've > tried: > > [?\C-tab] That won't work, because the part that follows ?\C- must be a character, and the tab symbol represents a function key. If you evaluate that, you get [20 ab], which is a vector of the Co

Re: Key binding syntax

2005-04-11 Thread Jesper Harder
Greg Novak <[EMAIL PROTECTED]> writes: > I also did "apropos-command key" looking for a command where I can hit > a key and have emacs tell me the exact text that should go into the > first argument to local-set-key in order to rebind the key. Much like > describe-key, but telling me how to rebin

Re: Key binding syntax

2005-04-11 Thread Peter Dyballa
Am 11.04.2005 um 23:22 schrieb Greg Novak: I'm having a difficult time rebinding Shift-tab or Control tab. You have some easy choices to do it right! 1. Just type 'M-x global-set-key RET C-TAB RET RET'. Now the key has a binding, but you want to know which. So type again: 'M-x repeat-complex-com

Key binding syntax

2005-04-11 Thread Greg Novak
I'm having a difficult time rebinding Shift-tab or Control tab. I've tried: [?\C-tab] [?\C- tab] "\C-" "\C-[tab]" "\C-\t" as the first argument to local-set-key and none of them seem to work. I've read the Emacs manual and the Elisp manual, but I can't find the information I need. I also did