From b11a9e709f0c4342262aecb194d51069e6026e57 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 27 Apr 2020 14:45:52 +0200 Subject: [PATCH] Emacs: Enable upcase-region and downcase-region. --- init.d/basics/input.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.d/basics/input.el b/init.d/basics/input.el index dcdb3ac..c6351db 100644 --- a/init.d/basics/input.el +++ b/init.d/basics/input.el @@ -1,6 +1,6 @@ ;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-04-17T16:43:34+0200> +;; Time-stamp: <2020-04-27T14:45:35+0200> ;;; Commentary: ;; * Setup mouse & keyboard behaviour. @@ -47,7 +47,9 @@ With ARG, do it that many times." (interactive "p") (my/delete-word (- arg))) ;; Enable keybindings. - (put 'set-goal-column 'disabled nil)) + (put 'set-goal-column 'disabled nil) + (put 'upcase-region 'disabled nil) + (put 'downcase-region 'disabled nil)) :bind (("C-S-" . fixup-whitespace) ; Reduce whitespace around cursor. ("M-" . scroll-up-line) ; Scroll without moving the cursor. ("M-" . scroll-down-line)