summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2025-07-03 15:59:43 +0200
committerThomas Voss <thomas.voss@humanwave.nl> 2025-07-03 15:59:43 +0200
commitd6941a47c31607353318784eae8d178ca0e49675 (patch)
treed9e21cfa33cc4d0ed24233f4ea13d2d9ee2036fd
parent0ca5f198cb8595f3a032abc9c9302d4b06a4c0bf (diff)
emacs: Add binding for ‘magit-blame-addition’HEADmaster
-rw-r--r--.config/emacs/modules/mm-projects.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/.config/emacs/modules/mm-projects.el b/.config/emacs/modules/mm-projects.el
index 017a88c..25c1a18 100644
--- a/.config/emacs/modules/mm-projects.el
+++ b/.config/emacs/modules/mm-projects.el
@@ -47,9 +47,10 @@ This is intended to be called interactively via
(use-package magit
:ensure t
- :bind ( :map magit-status-mode-map
- ("[" . magit-section-backward-sibling)
- ("]" . magit-section-forward-sibling))
+ :bind (("C-c b" . magit-blame-addition)
+ :map magit-status-mode-map
+ ("[" . magit-section-backward-sibling)
+ ("]" . magit-section-forward-sibling))
:custom
(git-commit-style-convention-checks
'(non-empty-second-line overlong-summary-line))