From c4823bf130b1482c064a911ec740d78936d706b2 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 21 Feb 2025 23:11:42 +0000 Subject: [PATCH] feat(cursor): add prev/next paragrapn alt+a/e keybindings --- keybindings.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/keybindings.json b/keybindings.json index e21c596..974ecf9 100644 --- a/keybindings.json +++ b/keybindings.json @@ -216,6 +216,23 @@ // Text navigation // =========================================================================== // + { // Forward paragraph. + "key": "alt+e", + "command": "emacs-mcx.forwardParagraph", + "when": "editorTextFocus && !suggestWidgetVisible" + }, + { // Forward paragraph. + // This is a workaround for alt+e not working in VSCode. Relies on + // Karabiner-Elements to remap alt+e to cmd+alt+right. + "key": "cmd+alt+right", + "command": "emacs-mcx.forwardParagraph", + "when": "editorTextFocus && !suggestWidgetVisible" + }, + { // Backward paragraph. + "key": "alt+a", + "command": "emacs-mcx.backwardParagraph", + "when": "editorTextFocus && !suggestWidgetVisible" + }, { // Go to symbol definition. "key": "ctrl+t", "command": "workbench.action.gotoSymbol",