Skip to content

Commit

Permalink
OS X non-global key repeat fix (#577)
Browse files Browse the repository at this point in the history
The current README has the user disable OS X’s “press and hold” feature at a global level. It’s possible to disable this on a per-app basis, though, provided you know the name of an app’s .plist file.

This change will disable “press and hold” only for VSCode, not globally.
  • Loading branch information
jimray authored and johnfn committed Aug 7, 2016
1 parent 04cb050 commit 77fb6a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ See our [Github Milestone page](https://github.com/VSCodeVim/Vim/milestones) for

#### `j`, `k` and others don't repeat when I hold them down.

On OSX, the fix is to run this in the terminal. Be mindful as this is a global setting:
On OS X, run the following command:

`defaults write -g ApplePressAndHoldEnabled -bool false`
`defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false`

#### How can I bind `jj` to `<escape>`?

Expand Down

0 comments on commit 77fb6a5

Please sign in to comment.