I recently upgraded from Snow Leopard to Lion and Xcode 4.1, and word jumping stopped working in both Terminal and iTerm2. Did the mappings change?

This is with and without a homebrew installation of readline.

My .inputrc looks like this:

"\e[1;5D": backward-word
"\e[1;5C": forward-word

Thanks!

link|improve this question

64% accept rate
To clarify "stopped working": when I press Ctrl+[left] or Ctrl+[right], nothing happens. Ctrl+A and Ctrl+E still work for line jumping. – Carson Jul 23 '11 at 17:16
1  
Ctrl+[left|right] for me switch between spaces and full-screen apps. Not sure if that's the default or not. Do you see the same behaviour? – Rob Cowie Jul 23 '11 at 18:36
2  
That's probably it. You can turn them off in Keyboard Shortcuts in System Preferences. Select the "Mission Control" category. – Nicholas Riley Jul 23 '11 at 20:59
feedback

2 Answers

up vote 2 down vote accepted

mission control took over the same commands as word jumping. thanks to rob cowrie and nicholas riley for the heads-up on that.

link|improve this answer
feedback

I added the following in my /etc/inputrc

# word jump on SHIFT left/right arrows
"\e[1;2D": backward-word
"\e[1;2C": forward-word

it works great

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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