Emacs: Add Emacs-over-SSH workaround for windmove.

This commit is contained in:
tastytea 2020-01-23 03:39:28 +01:00
parent b3a5e85ede
commit 667e0c2404

View File

@ -1,6 +1,6 @@
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-21T01:49:19+0100>
;; Time-stamp: <2020-01-23T03:39:19+0100>
;;; Commentary:
;; * Setup mouse & keyboard behaviour.
@ -95,6 +95,12 @@ With argument, do this that many times."
(use-package windmove
:config
(windmove-default-keybindings '(meta shift))
:bind ; Needed for Emacs-over-SSH. 🤷
([(meta shift left)] . windmove-left)
([(meta shift right)] . windmove-right)
([(meta shift up)] . windmove-up)
([(meta shift down)] . windmove-down)
)
(provide 'basics/input)