From b8214a03123e52e9b8abc24f927cef71e5f984ec Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 1 Jan 2014 21:12:07 +0100 Subject: Initial commit --- upcase-mode.el | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 upcase-mode.el diff --git a/upcase-mode.el b/upcase-mode.el new file mode 100644 index 0000000..c81e8a8 --- /dev/null +++ b/upcase-mode.el @@ -0,0 +1,70 @@ +;;; upcase-mode.el --- Upcase all input -*- lexical-binding: t; -*- + +;; Copyright (C) 2014 Tom Willemse + +;; Author: Tom Willemse +;; Keywords: convenience +;; Version: 0.1.0 + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; The main entry point for this module, `upcase-transient-mode', +;; temporarily enables a keymap that causes all input to be made +;; upper-case. This map stays active as long as the result of +;; `upcase' applied to the input is different from the input itself, +;; or if there is a value in `upcase-character-map' for the input. + +;;; Code: + +(defvar upcase-transient-map + (let ((map (make-sparse-keymap))) + (define-key map [remap self-insert-command] #'upcase-self-insert-command) + map)) + +(defvar upcase-character-map + #s(hash-table data (?- ?_))) + +(defun upcase-self-insert-command () + "Wrap `self-insert-command' to upcase the input character. + +This also translates keys from the variable +`upcase-character-map' to values from the same variable." + (interactive) + (let ((last-command-event + (gethash last-command-event upcase-character-map + (upcase last-command-event)))) + (self-insert-command 1))) + +(defun upcase-able-p () + "Check to see if the current input can be upcased. + +Upcased can mean either the result of `upcase' being different +from the original or having a value in `upcase-character-map'." + (let ((case-fold-search nil)) + (or (not (char-equal + last-command-event (capitalize last-command-event))) + (gethash last-command-event upcase-character-map)))) + +;;;###autoload +(defun upcase-transient-mode () + "Set a transient map that upcases any input. + +This map stays active as long as the input can be upcased." + (interactive) + (set-transient-map upcase-transient-map #'upcase-able-p)) + +(provide 'upcase-mode) +;;; upcase-mode.el ends here -- cgit v1.2.3-54-g00ecf