Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ defaults write com.microsoft.VSCodeExploration ApplePressAndHoldEnabled -bool fa
defaults delete -g ApplePressAndHoldEnabled # If necessary, reset global default
```

For Cursor (or any other application that's not in the list above), first grab its identifier:

```sh
mdls -name kMDItemCFBundleIdentifier /Applications/Cursor.app
```

Then use its identifier as above:

```sh
defaults write <identifier without quotes here> ApplePressAndHoldEnabled -bool false
```

We also recommend increasing Key Repeat and Delay Until Repeat settings in _System Preferences -> Keyboard_.

### Windows
Expand Down