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

It's supposed to be M + cursor, but any shortcut in emacs using M (escape) on my mac sucks, because every time i need to use it, i need to release M (the escape key) and then press it again. Is there a better shortcut for moving along words in emacs (kind of like ctr + arrow in windows?)

share|improve this question
1  
Which version of emacs are using? My Aquamacs 1.9 had this problem. I upgraded to 2.0 and alt-arrow now works just fine. – Marcelo Cantos May 22 '10 at 7:23

3 Answers

up vote 1 down vote accepted

There is an setting in Terminal's preferences to use the option key as meta, under settings/keyboard, then you can use option-arrow or option-f to move forward by words.

share|improve this answer
you are my hero – NMoney May 22 '10 at 7:29

At least for me forward/backward word is bound by default to M-right/left(arrow), C-right/left(arrow) and of course M-f/b. If this is not the case for you you can do something like this:

(global-set-key (kbd "C-right") 'forward-word)
(global-set-key (kbd "C-left") 'backward-word)

Place this code in .emacs or .emacs.d/init.el and you should be fine.

share|improve this answer

You can change the Meta key to Alt, Command, or Caps Lock. Take a look at this EmacsWiki article.

share|improve this answer

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.