Skip to content

Commit

Permalink
magit-log-refresh: No longer exit transient after any margin command
Browse files Browse the repository at this point in the history
It's unclear why I didn't already do that in [1: bf0ef38], for the
remaining two margin commands.  The same reasoning used for the other
two also applies to these two.

1: 2022-06-24 bf0ef38
   No longer exit transient while toggling margin or cycling styles
  • Loading branch information
tarsius committed Sep 19, 2023
1 parent 5e04d79 commit ae7f5e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lisp/magit-log.el
Original file line number Diff line number Diff line change
Expand Up @@ -533,10 +533,10 @@ commits before and half after."
("s" "buffer and set defaults" transient-set-and-exit)
("w" "buffer and save defaults" transient-save-and-exit)]
["Margin"
("L" "toggle visibility" magit-toggle-margin :transient t)
("l" "cycle style" magit-cycle-margin-style :transient t)
("d" "toggle details" magit-toggle-margin-details)
("x" "toggle shortstat" magit-toggle-log-margin-style)]
("L" "toggle visibility" magit-toggle-margin :transient t)
("l" "cycle style" magit-cycle-margin-style :transient t)
("d" "toggle details" magit-toggle-margin-details :transient t)
("x" "toggle shortstat" magit-toggle-log-margin-style :transient t)]
[:if-mode magit-log-mode
:description "Toggle"
("b" "buffer lock" magit-toggle-buffer-lock)]]
Expand Down

0 comments on commit ae7f5e9

Please sign in to comment.