branch: elpa/magit
commit 689716648c883d546a018c9bb550f1179941c94b
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit:--signoff: Use different key to avoid conflicts
---
CHANGELOG | 3 +++
lisp/magit.el | 1 +
2 files changed, 4 insertions(+)
diff --git a/CHANGELOG b/CHANGELOG
index bf6b6b040f6..1117135f571 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -16,6 +16,9 @@ Bugfixes:
- Some arguments were missing from diff menus when invoked from
the status buffer. #5309
+- In some menus the bindings for ~--signoff~ conflicted with those for
+ other arguments. #5312
+
* v4.3.0 2025-02-04
- Added new option ~magit-refs-show-branch-descriptions~. 42ed6c1966
diff --git a/lisp/magit.el b/lisp/magit.el
index 3f721acf461..c076f4dbf4b 100644
--- a/lisp/magit.el
+++ b/lisp/magit.el
@@ -504,6 +504,7 @@ is run in the top-level directory of the current working
tree."
(transient-define-argument magit:--signoff ()
:description "Add Signed-off-by trailer"
:class 'transient-switch
+ :key "+s"
:shortarg "-s"
:argument "--signoff"
:level 6)