X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=blobdiff_plain;f=elpher.el;h=4b8934b8aaf07c681d6d047a2b4ae951cef8ec2d;hb=refs%2Fheads%2Fmaster;hp=c5014f2c9ddff1f785373510dac7b4915738dcde;hpb=2b31dfe0ec259736774b2e7a3cd9921f4e3b26af;p=elpher.git diff --git a/elpher.el b/elpher.el index c5014f2..dcc702a 100644 --- a/elpher.el +++ b/elpher.el @@ -5,7 +5,7 @@ ;; Author: Tim Vaughan ;; Created: 11 April 2019 -;; Version: 3.6.0 +;; Version: 3.6.2 ;; Keywords: comm gopher gemini ;; Homepage: https://thelambdalab.xyz/elpher ;; Package-Requires: ((emacs "27.1")) @@ -71,7 +71,7 @@ ;;; Global constants ;; -(defconst elpher-version "3.6.0" +(defconst elpher-version "3.6.2" "Current version of elpher.") (defconst elpher-margin-width 6 @@ -704,9 +704,9 @@ If LINE is non-nil, replace that line instead." (defvar elpher-link-keymap (let ((map (make-sparse-keymap))) - (keymap-set map "S-" 'ignore) ;Prevent buffer face popup - (keymap-set map "S-" #'elpher--open-link-new-buffer-mouse) - (keymap-set map "S-" #'elpher--open-link-new-buffer) + (define-key map (kbd "S-") 'ignore) ;Prevent buffer face popup + (define-key map (kbd "S-") #'elpher--open-link-new-buffer-mouse) + (define-key map (kbd "S-") #'elpher--open-link-new-buffer) (set-keymap-parent map button-map) map))