Emacs: Set org-support-shift-select to t.

This commit is contained in:
tastytea 2019-12-19 01:36:51 +01:00
parent 1a6db383c6
commit 2ef4111c3a
1 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-29T01:00:33+00:00>
;; Time-stamp: <2019-12-19T00:36:29+00:00>
;;; Commentary:
@ -126,6 +126,9 @@
;; Document editing, formatting, and organizing mode.
(use-package org
:custom
(org-support-shift-select t) ; Make shift behave normally on text.
:bind
(:map org-mode-map ; Remove some annoying keybindings.
("M-<left>" . nil)
@ -136,10 +139,12 @@
("M-S-<right>" . nil)
("M-S-<up>" . nil)
("M-S-<down>" . nil)
("S-<left>" . nil)
("S-<right>" . nil)
("C-S-<left>" . nil)
("C-S-<right>" . nil)
;; ("S-<left>" . nil)
;; ("S-<right>" . nil)
;; ("C-S-<left>" . nil)
;; ("C-S-<right>" . nil)
;; ("S-<up>" . nil)
;; ("S-<down>" . nil)
)
)