mu4e-compose: Heed shift-selection-mode for extending the selection.

Fixes #2836.
This commit is contained in:
Danny Milosavljevic
2025-04-05 13:54:45 +02:00
parent 507ea8e18e
commit 0c7398d55c

View File

@ -121,7 +121,7 @@ the beginning of the buffer.
Push mark at previous position, unless either a Push mark at previous position, unless either a
\\[universal-argument] prefix ARG is supplied, or Transient Mark mode \\[universal-argument] prefix ARG is supplied, or Transient Mark mode
is enabled and the mark is active." is enabled and the mark is active."
(interactive "P") (interactive "^P")
(or arg (or arg
(region-active-p) (region-active-p)
(push-mark)) (push-mark))
@ -138,7 +138,7 @@ there, go to the end of the buffer.
Push mark at previous position, unless either a Push mark at previous position, unless either a
\\[universal-argument] prefix ARG is supplied, or Transient Mark mode \\[universal-argument] prefix ARG is supplied, or Transient Mark mode
is enabled and the mark is active." is enabled and the mark is active."
(interactive "P") (interactive "^P")
(or arg (or arg
(region-active-p) (region-active-p)
(push-mark)) (push-mark))