Emacs: Add Emacs-over-SSH workaround for windmove.
This commit is contained in:
parent
b3a5e85ede
commit
667e0c2404
|
@ -1,6 +1,6 @@
|
||||||
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
|
;;; 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:
|
;;; Commentary:
|
||||||
;; * Setup mouse & keyboard behaviour.
|
;; * Setup mouse & keyboard behaviour.
|
||||||
|
@ -95,6 +95,12 @@ With argument, do this that many times."
|
||||||
(use-package windmove
|
(use-package windmove
|
||||||
:config
|
:config
|
||||||
(windmove-default-keybindings '(meta shift))
|
(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)
|
(provide 'basics/input)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user