From dc240bb5c16afee5270b1ff4658b25666a39b25a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 17 Nov 2025 16:54:36 +0100 Subject: [PATCH] Reintroduce keybindings for bm.el This reverts 0d1b624. I find myself using these functions from time to time, and F12 is still unoccupied, so let's try this for a change :) --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index 330c253..28d1f8f 100644 --- a/init.el +++ b/init.el @@ -3117,6 +3117,9 @@ Note that this workaround is incomplete, as explained in this comment." (bind-key "" #'hydra-org-linking/body) (bind-key "" #'magit-dispatch) (bind-key "" #'magit-status) + (bind-key "" #'bm-toggle) + (bind-key "C-" #'bm-next) + (bind-key "C-S-" #'bm-previous) (bind-key "C-," #'mc/skip-to-previous-like-this) (bind-key "C-." #'mc/skip-to-next-like-this) (bind-key "C-;" #'iedit-mode)