Emacs: Alias M-; C-; for TUI mode. Configure in alacritty & urxvt.

This commit is contained in:
tastytea 2020-11-29 13:33:43 +01:00
parent 120b7ef9d1
commit 5253f22d7b
1 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-11-25T06:29:01+0100>
;; Time-stamp: <2020-11-29T13:28:27+0100>
;;; Commentary:
;; * Setup mouse & keyboard behaviour.
@ -75,7 +75,11 @@ With ARG, do it that many times."
;; Edit multiple regions in the same way simultaneously.
(use-package iedit
:bind ("C-;" . iedit-mode))
:bind (("C-;" . iedit-mode)
("M-;" . iedit-mode)
;; ↓↑ Compatibility with TUI.
(:map iedit-mode-keymap
("M-;" . iedit-mode))))
;; Display available keybindings.
(use-package which-key