From: James Bunton Date: Tue, 14 Feb 2017 01:32:05 +0000 (+1100) Subject: Work around yank text bug X-Git-Url: https://code.delx.au/dotemacs/commitdiff_plain/8634d0e4f41c10632d993bbd2c50813009d57c8e Work around yank text bug --- diff --git a/lisp/my-minor-modes.el b/lisp/my-minor-modes.el index b6e36ea..34ee915 100644 --- a/lisp/my-minor-modes.el +++ b/lisp/my-minor-modes.el @@ -32,6 +32,7 @@ (setq goto-address-highlight-keymap (let ((m (make-sparse-keymap))) (define-key m (kbd "C-") 'goto-address-at-point) + (define-key m (kbd "") 'ignore) ; fixes yank text bug for some reason (define-key m (kbd "C-c RET") 'goto-address-at-point) m))