From 2ef4111c3a91d8cb9c805a726be08f4e767f4fd5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 19 Dec 2019 01:36:51 +0100 Subject: [PATCH] Emacs: Set org-support-shift-select to t. --- init/text/misc.el | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/init/text/misc.el b/init/text/misc.el index 1972950..fb615b4 100644 --- a/init/text/misc.el +++ b/init/text/misc.el @@ -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-" . nil) @@ -136,10 +139,12 @@ ("M-S-" . nil) ("M-S-" . nil) ("M-S-" . nil) - ("S-" . nil) - ("S-" . nil) - ("C-S-" . nil) - ("C-S-" . nil) + ;; ("S-" . nil) + ;; ("S-" . nil) + ;; ("C-S-" . nil) + ;; ("C-S-" . nil) + ;; ("S-" . nil) + ;; ("S-" . nil) ) )