From e696ddcd125ae8d5bfca266c45fd89f232b69e80 Mon Sep 17 00:00:00 2001 From: aeb Date: Sat, 7 Mar 2020 07:06:56 +0200 Subject: [PATCH] Introduce new leader key bindings - bind [Space] + 8 -> select next occurrence - bind [Space] + Enter -> show intention actions --- src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java b/src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java index 2b7ae8b..cc8a2f9 100644 --- a/src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java +++ b/src/main/java/com/github/amibiz/ergokeys/ErgoKeysPlugin.java @@ -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;