Commit 84de1445b0ec

Vincent Demeester <vincent@sbr.pm>
2020-05-06 05:41:13
config-windows.el: use shift instead of alt…
… for windmove. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 919934c
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 (("M-<left>" . windmove-left)
-         ("M-<down>" . windmove-down)
-         ("M-<up>" . windmove-up)
-         ("M-<right>" . windmove-right)))
+  :bind (("S-<left>" . windmove-left)
+         ("S-<down>" . windmove-down)
+         ("S-<up>" . windmove-up)
+         ("S-<right>" . windmove-right)))
 ;; -UseWindmove
 
 (defun vde/window-split-toggle ()