Commit 6502db3847ae

Vincent Demeester <vincent@sbr.pm>
2020-05-15 12:48:03
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>
1 parent 264c172
Changed files (1)
tools
emacs
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 ()