How can I use the Ctrl + Arrow windows shortcut to navigate through a text sting on a Mac?

link|improve this question
Just to clarify, you're asking how to change the default ⌥-arrow shortcut? – fideli Jun 14 '10 at 12:57
feedback

3 Answers

up vote 1 down vote accepted

Have you tried to use ⌥-arrow (ALT-arrow)?

link|improve this answer
feedback

Create a file named DefaultKeyBinding.dict in ~/Library/Keybindings and add the following text:

{
    "^\UF702" = (moveWordLeft:);
    "^\UF703" = (moveWordRight:);
}

This will reassign Ctrl-Left and Ctrl-Right from their default moveToBeginningOfLine/moveToEndOfLine to movement by words, the same action as performed by Opt-Left/Right.

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.