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

Didn't work.

This reverts commit 9e05a28bb9ea5c4dfd7022407ef191c0b13b76ba.
This commit is contained in:
tastytea 2020-04-15 01:09:50 +02:00
parent c94424ec23
commit 6ae0d39e5e
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-04-14T17:00:54+0200>
;; Time-stamp: <2020-03-28T01:02:49+0100>
;;; 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-R" . point-to-register); Store location of point in register.
("C-S-r" . point-to-register); Store location of point in register.
("M-W" . copy-to-register) ; Store text in register.
("C-Y" . insert-register) ; Insert text from register.
("C-S-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.