From 65177e5fb22c17a6b4238f6be6925aa38cdaab9c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 24 Aug 2025 21:00:04 +0200 Subject: [PATCH] Add key binging for `git-link-homepage` I think I am going to need this often. --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index 61457ef..488f2f4 100644 --- a/init.el +++ b/init.el @@ -1603,6 +1603,7 @@ Note that this workaround is incomplete, as explained in this comment." (use-package git-link :commands (git-link + git-link-homepage git-link-dispatch) :init (setopt git-link-consider-ssh-config t git-link-open-in-browser t @@ -3080,6 +3081,7 @@ Note that this workaround is incomplete, as explained in this comment." (bind-key "C-c d" #'define-word-at-point) (bind-key "C-c e" #'crux-eval-and-replace) (bind-key "C-c g l" #'git-link) + (bind-key "C-c g h" #'git-link-homepage) (bind-key "C-c h #" #'helm-emms) (bind-key "C-c h m" #'man) (bind-key "C-c h p" #'list-processes)