Skip to content

Commit

Permalink
Introduce new leader key bindings
Browse files Browse the repository at this point in the history
- bind [Space] + 8 -> select next occurrence
- bind [Space] + Enter -> show intention actions
  • Loading branch information
amibiz committed Mar 7, 2020
1 parent cda60fb commit e696ddc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ public class ErgoKeysPlugin implements ApplicationComponent {
new ActionBinding("EditorTextEnd", KeyEvent.VK_SEMICOLON, KeyEvent.VK_S),
new ActionBinding("VcsShowPrevChangeMarker", KeyEvent.VK_U, KeyEvent.VK_G),
new ActionBinding("VcsShowNextChangeMarker", KeyEvent.VK_O, KeyEvent.VK_R),
new ActionBinding("SelectNextOccurrence", KeyEvent.VK_8, KeyEvent.VK_8),
new ActionBinding("ShowIntentionActions", KeyEvent.VK_ENTER, KeyEvent.VK_ENTER),
};

private Keymap userKeymap;
Expand Down

0 comments on commit e696ddc

Please sign in to comment.