I'm looking to rebind Meta to the tab key in my emacs environment. I've looked around but been unable to find anything other than binding it to command or option, which are slightly better but still not ideal.

link|improve this question

Would it be an option for you to use the ESC key instead of the TAB key? – Thomas Jan 8 at 4:11
@Thomas, I was looking for a more natural hand position, escape is just as bad as alt for me. After getting this answer I settled on just using the command key (I'm on a mac). – dave Jan 8 at 14:20
The reason I asked was because TAB is often used for indentation in Emacs, and so it might not even be a good idea to rebind it, unless you're happy with using some other key for indentation instead. – Thomas Jan 8 at 23:34
feedback

1 Answer

up vote 2 down vote accepted

You cannot do this in Emacs alone, you need to modify the keymap in your window system (*nux, Mac, MS Windows).

See the similar questions for the reasoning: Mapping Caps Lock to Control from within Emacs on Windows, elisp how to check if Shift key is pressed, and Can I send a keypress to Windows from Emacs?.

You can make the change in your window system - but it'd be helpful to know what that is...

link|improve this answer
Trey, I was wondering if it might be possible to use Emacs' translation keymaps to hack around it. Any thoughts? – Thomas Jan 8 at 23:37
@Thomas You could probably change TAB to be a prefix key and get close to what the asker is wanting - but you'd have to do a bunch of remapping in all the different modes... – Trey Jackson Jan 8 at 23:56
sure but you could have a mode-hook that walks over the mode's keymap and remaps everything automatically. – Thomas Jan 9 at 3:34
@Thomas likely not a mode-hook (run once every time a mode is entered), but after each of the libraries is run (only run once per setting up the mode's keymap). and you'd also need to find new bindings for the functionality not available from TAB, which might be tricky (e.g. yasnappet). It could be done, but it would take a lot of effort - probably more than a SO answer. ;) – Trey Jackson Jan 10 at 4:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.