how can I use the ctl+arrow windows shortcut to navigate through each word in a text at Mac?

0

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

johnk

Posted 2010-06-14T12:28:22.850

Reputation: 103

Just to clarify, you're asking how to change the default ⌥-arrow shortcut? – fideli – 2010-06-14T12:57:15.627

Answers

1

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

lajuette

Posted 2010-06-14T12:28:22.850

Reputation: 4 364

2

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.

Daniel Beck

Posted 2010-06-14T12:28:22.850

Reputation: 98 421

1

ghoppe

Posted 2010-06-14T12:28:22.850

Reputation: 6 124