diff --git a/init.d/basics/input.el b/init.d/basics/input.el index 48e15ec..00cfbea 100644 --- a/init.d/basics/input.el +++ b/init.d/basics/input.el @@ -1,6 +1,6 @@ ;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-12-01T10:26:19+00:00> +;; Time-stamp: <2020-01-21T01:49:19+0100> ;;; Commentary: ;; * Setup mouse & keyboard behaviour. @@ -64,11 +64,6 @@ With argument, do this that many times." ;; Switch buffers. ("M-" . previous-buffer) ("M-" . next-buffer) - ;; Switch windows. - ("M-S-" . previous-multiframe-window) - ("M-S-" . next-multiframe-window) - ("s-" . previous-multiframe-window) ; s = Super - ("s-" . next-multiframe-window) ;; Switch between header and implementation. ("C-:" . ff-find-other-file) ) @@ -96,5 +91,11 @@ With argument, do this that many times." (which-key-mode) ) +;; Navigate between windows with alt+arrows. +(use-package windmove + :config + (windmove-default-keybindings '(meta shift)) + ) + (provide 'basics/input) ;;; input.el ends here