From 46e4626e4a9326fd32161459db1a22af7b791902 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 20 Mar 2026 16:34:58 +0100 Subject: emacs: Map ‘C-x p G’ to ‘project-git-grab’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/emacs/modules/mm-keybindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/emacs/modules/mm-keybindings.el') diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index 0df92ce..929dd02 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -151,7 +151,7 @@ the first command is remapped to the second command." (with-eval-after-load 'project (mm-keymap-set project-prefix-map "g" #'mm-project-find-regexp - "G" #'mm-project-or-external-find-regexp) + "G" #'project-git-grab) (when mm-humanwave-p (mm-keymap-set project-prefix-map -- cgit v1.2.3 From b64b74516c0e5dd3fa153770fe90c813baa6aa68 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 20 Mar 2026 16:36:50 +0100 Subject: emacs: Map ‘C-c m’ to ‘mm-humanwave-insert-last-commit-message’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/emacs/modules/mm-keybindings.el | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.config/emacs/modules/mm-keybindings.el') diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index 929dd02..aae9b4d 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -162,6 +162,11 @@ the first command is remapped to the second command." (mm-keymap-set eat-semi-char-mode-map "M-o" #'ace-window))) +(with-eval-after-load 'minibuffer + (when mm-humanwave-p + (mm-keymap-set minibuffer-mode-map + "C-c m" #'mm-humanwave-insert-last-commit-message))) + ;;; Display Available Keybindings -- cgit v1.2.3