Is it possible to enable repeating keys only for the specific IDE where the plugin is installed? #1050
-
Upon first installing the plugin in PyCharm(2024.2.4) on macOS 15.01, a pop-up appears asking about enabling repeating keys I have tried looking for an IDE-specific default, like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, you can set it per-application. The tricky part is finding the application ID. This gist has some details. The EAP builds usually have Ideally, the plugin would do this itself, but it's unclear how to get the app ID programmatically. An even better solution would be for the plugin to disable press and hold while in Normal mode. I think this is now supported by the JBR, so it should be possible to enable/disable input methods for the editor when the mode changes. However, that needs implementing. |
Beta Was this translation helpful? Give feedback.
Yes, you can set it per-application. The tricky part is finding the application ID. This gist has some details. The EAP builds usually have
-EAP
appended, such ascom.jetbrains.rider-EAP
. And you can use a command line such asdefaults read | egrep -o 'com\.jetbrains\.[^\"]+' | sort --unique
to print out all the known IDs for the different IDEs, so you can then set it per-IDE.Ideally, the plugin would do this itself, but it's unclear how to get the app ID programmatically. An even better solution would be for the plugin to disable press and hold while in Normal mode. I think this is now supported by the JBR, so it should be possible to enable/disable input methods for the editor when the…