Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I check "Use option as meta key" checkbox in Mac OS X Terminal, because I like to use emacs way of moving between words: M-f & M-b.

But if I do that, I can't get the backslash (Option + º; i.e.: Option + key-at-the-left-of-1-in-spanish-keyboard). If I uncheck it, then I can input the backslash, but I don't have M-f & M-b.

Is there a way to get both? This is driving me nuts!

share|improve this question
This probably belongs on SuperUser.com or better yet, Apple.StackExchange.com – Slomojo Jan 27 '11 at 0:51
+1 for letting me understand that there was a "Use option as meta key" box. – John Berryman Feb 3 '11 at 4:01

4 Answers

Not a great solution, but XTerm (running in X11 on OS X) can use CMD as the Meta key.

You might also have some good results from KeyRemap4MacBook.

Just as a side benefit, XTerm should also give you proper terminal mouse interaction, e.g. in Emacs or ncurses based apps.

share|improve this answer

You could customize the keyboard map to use a different key for entering backslash. Look in

Preferences > Settings > [profile] > Keyboard

For example, you could map Control-F1 to backslash.

Note that the default keyboard map maps Option-Left/Right Arrow to M-b/f, so you could use those instead of using Option for Meta (you’d have to get used to using the arrow keys instead of b and f, but I’ve never been able to get used to using b and f and prefer the arrow keys).

share|improve this answer

The escape key works as a meta key by default; no need to use option as the meta key (other than its more convenient location).

share|improve this answer
The Option key is also a lot easier to type fluidly, because it's a modifier key. To use ESC you have to press and release the key, then type the key you want to modify. – Chris Page Jul 4 '12 at 23:03

You will most likely run into a lot more problems with that setup, because Mac OS uses "Alt" as a modifier in a lot of shortcuts. But anyway, including the following line in your ~/.bash_profile will send a backslash if you enter the unicode character "∫" (which is E288AB):

bind '"\033\xE2\x88\xAB"':'"\\"'
share|improve this answer
But how would one enter that when Option is Meta? – Chris Page Jul 4 '12 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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