Emacs: Make more keybindings with shift work in terminal mode.

This commit is contained in:
tastytea 2020-04-14 17:01:10 +02:00
parent 87501a731c
commit c94424ec23
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; common.el --- Common settings for text files. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-28T01:02:49+0100>
;; Time-stamp: <2020-04-14T17:00:54+0200>
;;; Commentary:
@ -14,9 +14,9 @@
(fill-column 80) ; Documents are 80 chars wide by default.
(word-wrap t)) ; Wrap at word for continuation lines.
:bind (("C-r" . jump-to-register) ; Move point to location in register.
("C-S-r" . point-to-register); Store location of point in register.
("C-R" . point-to-register); Store location of point in register.
("M-W" . copy-to-register) ; Store text in register.
("C-S-y" . insert-register) ; Insert text from register.
("C-Y" . insert-register) ; Insert text from register.
("M-<f7>" . list-registers)) ; List all registers.
:hook (text-mode . auto-fill-mode)) ; Enable word-wrapping at fill-column.