commit 84de1445b0ec24480139309cfbec6496be6f61df parent 919934c9d24b10fac458e5cde9ef52447ef6857c Author: Vincent Demeester <vincent@sbr.pm> Date: Wed, 6 May 2020 05:41:13 +0200 config-windows.el: use shift instead of alt… … for windmove. Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/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 (("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 ()