home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 6502db3847aeca31d0f07b7a7d386df2b7ee86e9
parent 264c17239ea7a396ab870953b1672526d27652a4
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 15 May 2020 12:48:03 +0200

config-windows.el: update windmove bindings 🥀

`C-s` prefix is not used either in gnome-shell or in my i3 configuration.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-windows.el | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tools/emacs/config/config-windows.el b/tools/emacs/config/config-windows.el @@ -35,10 +35,10 @@ ;; UseWindmove (use-package windmove :commands (windmove-left windmove-right windmove-down windmove-up) - :bind (("S-<left>" . windmove-left) - ("S-<down>" . windmove-down) - ("S-<up>" . windmove-up) - ("S-<right>" . windmove-right))) + :bind (("C-s-<up>" . windmove-up) + ("C-s-<right>" . windmove-right) + ("C-s-<down>" . windmove-down) + ("C-s-<left>" . windmove-left))) ;; -UseWindmove (defun vde/window-split-toggle ()