Skip to content

Instantly share code, notes, and snippets.

@lsd
Last active May 3, 2024 07:22
Show Gist options
  • Save lsd/1e1826907ab7e49c536a to your computer and use it in GitHub Desktop.
Save lsd/1e1826907ab7e49c536a to your computer and use it in GitHub Desktop.
Enable key-repeat for ALL applications or just for IdeaVim/specific JetBrains apps

Upgrading to Lion or Yosemite and WebStorm 9, I noticed key repeat was
turned off for the IdeaVim plugin h j k l keys.

System-wide key repeat

defaults write -g ApplePressAndHoldEnabled -bool false in a terminal will enable
key repeat for every app. This can alternatively be found in the accessibility settings in OS X' preferences.

App specific key repeat

If you only want this behavior for specific JetBrains' apps, use:

  • Community Edition IntelliJ: - defaults write com.jetbrains.intellij.ce ApplePressAndHoldEnabled -bool false
  • Ultimate Edition IntelliJ: defaults write com.jetbrains.intellij ApplePressAndHoldEnabled -bool false
  • AppCode: defaults write com.jetbrains.AppCode ApplePressAndHoldEnabled -bool false
  • PyCharm: defaults write com.jetbrains.PyCharm ApplePressAndHoldEnabled -bool false
  • Android Studio: defaults write com.google.android.studio ApplePressAndHoldEnabled -bool false
  • WebStorm: defaults write com.jetbrains.WebStorm ApplePressAndHoldEnabled -bool false *
  • RubyMine: defaults write com.jetbrains.RubyMine ApplePressAndHoldEnabled -bool false *

** * These are assumptions, use Spotlight com.jetbrains. to get type hinting for your specific app**

@eduardo4jesus
Copy link

https://i.ibb.co/r6qbHKs/Screen-Shot-2022-04-18-at-2-25-38-PM.png

I wish I had taken this screenshot before pressing the wrong option here. I spent quite sometime trying to reset the options so this window would appear again. I tried a few of the solutions above and didn't work.

@jaimb1
Copy link

jaimb1 commented Jun 24, 2022

In case anyone else is having trouble getting this working for PyCharm installed through Jetbrains Toolbox, I first did a search with defaults find pycharm and found it's named similar to intellij in the original post. This command worked for me: defaults write com.jetbrains.pycharm.ce ApplePressAndHoldEnabled -bool false.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment