branch: externals/colorful-mode commit 2d9d1dd8c4b1975ca0bfdf6cb92cc6a598dc8b6b Author: Elias G. B. Perez <eg642...@gmail.com> Commit: Elias G. B. Perez <eg642...@gmail.com>
Change keybindings. * colorful-mode.el (colorful-mode-map): Use C-x prefix key instead C-c according to Emacs Lisp Convention style. This fixes github#1 issue. --- colorful-mode.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/colorful-mode.el b/colorful-mode.el index af740b077d..b12b45f32e 100644 --- a/colorful-mode.el +++ b/colorful-mode.el @@ -7,7 +7,7 @@ ;; Package-Requires: ((emacs "28.1") (compat "29.1.4.4")) ;; Homepage: https://github.com/DevelopmentCool2449/colorful-mode ;; Keywords: faces, tools, matching, convenience -;; Version: 1.0.2 +;; Version: 1.0.3 ;; This file is part of GNU Emacs. @@ -281,10 +281,10 @@ mode is derived from `prog-mode'." ;;;; Keymaps (defvar-keymap colorful-mode-map - :doc "Keymap when `colorful-mode' is active." - "C-c c x" #'colorful-change-or-copy-color - "C-c c c" #'colorful-convert-and-copy-color - "C-c c r" #'colorful-convert-and-change-color) + :doc "Keymap for `colorful-mode'." + "C-x c x" #'colorful-change-or-copy-color + "C-x c c" #'colorful-convert-and-copy-color + "C-x c r" #'colorful-convert-and-change-color) ;;;; Internal variables