Guest User

Untitled

a guest
Feb 9th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. Upgrading to Lion or Yosemite and WebStorm 9, I noticed key repeat was
  2. turned off for the IdeaVim plugin h j k l keys.
  3.  
  4. ## System-wide key repeat
  5.  
  6. `defaults write -g ApplePressAndHoldEnabled -bool false` in a terminal will enable
  7. key repeat for every app. This can alternatively be found in the `accessibility`
  8. settings in OS X' preferences.
  9.  
  10. ## App specific key repeat
  11.  
  12. If you only want this behavior for specific JetBrains' apps, use:
  13.  
  14. - Community Edition IntelliJ: - `defaults write com.jetbrains.intellij.ce ApplePressAndHoldEnabled -bool false`
  15. - Ultimate Edition IntelliJ: `defaults write com.jetbrains.intellij ApplePressAndHoldEnabled -bool false`
  16. - AppCode: `defaults write com.jetbrains.AppCode ApplePressAndHoldEnabled -bool false`
  17. - PyCharm: `defaults write com.jetbrains.PyCharm ApplePressAndHoldEnabled -bool false`
  18. - Android Studio: `defaults write com.google.android.studio ApplePressAndHoldEnabled -bool false`
  19. - WebStorm: `defaults write com.jetbrains.WebStorm ApplePressAndHoldEnabled -bool false` *
  20. - RubyMine: `defaults write com.jetbrains.RubyMine ApplePressAndHoldEnabled -bool false` *
  21.  
  22. ** * These are assumptions, use Spotlight `com.jetbrains.` to get type hinting for your
  23. specific app**
Add Comment
Please, Sign In to add comment