Skip to content

Commit

Permalink
add SLASH->GotoDeclaration
Browse files Browse the repository at this point in the history
fix NoOp binding for PERIOD
  • Loading branch information
Jeff Rhyason committed Dec 8, 2018
1 parent 8fde58e commit b79d515
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ public class ErgoKeysPlugin implements ApplicationComponent {

new ActionBinding("ErgoKeysNoopAction", KeyEvent.VK_B, KeyEvent.VK_X),
new ActionBinding("ErgoKeysNoopAction", KeyEvent.VK_M, KeyEvent.VK_M),
new ActionBinding("ErgoKeysNoopAction", KeyEvent.VK_COMMA, KeyEvent.VK_V),
new ActionBinding("ErgoKeysNoopAction", KeyEvent.VK_SLASH, KeyEvent.VK_Z),
new ActionBinding("ErgoKeysNoopAction", KeyEvent.VK_PERIOD, KeyEvent.VK_V),

// Navigation
new ActionBinding("GotoDeclaration", KeyEvent.VK_SLASH, KeyEvent.VK_Z),
};
private Keymap userKeymap;
private Keymap commandModeKeymap;
Expand Down

0 comments on commit b79d515

Please sign in to comment.