From e717dfef6fc518989c0f04cfa153fb81da4bc71a Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Fri, 3 Apr 2020 16:40:18 +0100 Subject: [PATCH] Add couple of keybinding to line mode of wm --- lib/fg42/wm.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/fg42/wm.el b/lib/fg42/wm.el index 07ad344..052c2d5 100644 --- a/lib/fg42/wm.el +++ b/lib/fg42/wm.el @@ -83,6 +83,7 @@ `( ;; Bind "s-r" to exit char-mode and fullscreen mode. ([?\s-r] . exwm-reset) + ([?\s-g] . keyboard-quit) ;; Bind "s-w" to switch workspace interactively. ([?\s-w] . exwm-workspace-switch) ;; Bind "s-0" to "s-9" to switch to a workspace by its index. @@ -125,6 +126,12 @@ ([?\C-v] . [next]) ([?\C-d] . [delete]) ([?\C-k] . [S-end delete]) + ;; navigation + ([?\C-c b] . [\M-left]) + ([?\C-c f] . [\M-right]) + + ;; Actions + ([?\C-c w] . [\C-w]) ;; cut/paste. ([?\C-w] . [?\C-x]) ([?\M-w] . [?\C-c])