commit b049efbd2a42a23f4a66494b57ac949b577ac043
parent ac8be53d1ec9cd7aa40a8e4c54e0f7c86563cdad
Author: Jamie Beardslee <beardsleejamie@gmail.com>
Date: Tue, 19 May 2020 15:49:59 +1200
[custom-exwm-config.el] bind "s-g" and "s-r" to move tabs globally
This is a good enough escape if an exwm window is acting up.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lisp/exwm/custom-exwm-config.el b/lisp/exwm/custom-exwm-config.el
@@ -129,6 +129,8 @@ output."
`(;; 's-f' and '<f11>': Toggle fullscreen.
(,(kbd "s-f") . exwm-fullscreen-or-reset)
(,(kbd "<f11>") . exwm-fullscreen-or-reset)
+ (,(kbd "s-r") . tab-next)
+ (,(kbd "s-g") . tab-previous)
;; 's-&': Launch application.
(,(kbd "s-&") . exwm-shell-command))))