diff options
author | Amin Bandali <bandali@gnu.org> | 2019-09-07 01:06:35 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-09-07 01:06:35 -0400 |
commit | b94c0e47e5acc038772272dc2a8d71fc230670f0 (patch) | |
tree | 9a62c6f0958008735341a54c5c4e7fc7f268108a | |
parent | 325749b244d17355c58f5121e2fd8c34c0cb2bbb (diff) | |
download | configs-b94c0e47e5acc038772272dc2a8d71fc230670f0.tar.gz configs-b94c0e47e5acc038772272dc2a8d71fc230670f0.tar.xz configs-b94c0e47e5acc038772272dc2a8d71fc230670f0.zip |
emacs: exwm: add convenient prev/next buffer switching bindings
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 93dd563..7805b28 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -693,7 +693,9 @@ around if needed." ([XF86ScreenSaver] . (lambda () (interactive) - (start-process "" nil "dm-tool" "lock"))))) + (start-process "" nil "dm-tool" "lock"))) + ([\s-XF86Back] . previous-buffer) + ([\s-XF86Forward] . next-buffer))) ;; Line-editing shortcuts (setq exwm-input-simulation-keys |