Select word under cursor using a keyboard shortcut?

What is the keyboard shortcut to select a word that your typing cursor is currently on ?

For example, if the word I want to select is World, while the typing cursor is between one of the letters of that word such as This Wo|rld is huge, what do I press to select only World ?


I don't know a single shortcut to select the word, but you can do it in two steps, by first moving the cursor to the start of the word, then select the word.

1) Move cursor to left of word:

⌥←

2) Select word to right of cursor:

⇧⌥→

Of course you could do a similar thing with moving to the right of the word with ⌥→ then selecting the word to the left of the cursor with ⇧⌥← if you prefer.


You could also create ~/Library/KeyBindings/ and save this as DefaultKeyBinding.dict:

{
    "~w" = selectWord:; // option-w
}

You have to reopen applications to apply changes. DefaultKeyBinding.dict doesn't work in Xcode or some cross-platform applications, but you could use KeyRemap4MacBook as a fallback:

<?xml version="1.0"?>
<root>
<item>
<name>Xcode</name>
<identifier>private.xcode</identifier>
<only>XCODE</only>
<autogen>__KeyToKey__ KeyCode::W, VK_OPTION | ModifierFlag::NONE, KeyCode::CURSOR_LEFT, ModifierFlag::OPTION_L, KeyCode::CURSOR_RIGHT, ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L</autogen>
</item>
</root>

In the current version of Xcode, you can set up the shortcut in Preferences... ( ⌘, ) -> Key Bindings, filter "select word", then you can choose a new shorcut by typing it in the field "Key" associated


  1. Open Preferences..
  2. Go to Key Bindings > Text tab
  3. Thus it does not provide default shortcut. You have to customize it by setting keys. enter image description here