]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (shift-select-mode): Add new choice 'permanent' (bug#50038).
authorJuri Linkov <juri@linkov.net>
Sun, 15 Aug 2021 16:18:05 +0000 (19:18 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 15 Aug 2021 16:18:05 +0000 (19:18 +0300)
(handle-shift-selection): Handle new choice 'permanent'.

etc/NEWS
lisp/simple.el

index 09ace73f5d9c53b9394b50e2db5050a8c3c1943f..c2b53e470502583c6a63db9462bc11d4491d745e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -263,6 +263,12 @@ This works in text buffers and over images.  Typing a numeric prefix arg
 (e.g. 'M-5') before starting horizontal scrolling changes its step value.
 The value is saved in the user option 'mouse-wheel-scroll-amount-horizontal'.
 
+---
+** New choice 'permanent' for 'shift-select-mode'.
+When the mark was activated by shifted motion keys,
+non-shifted motion keys don't deactivate the mark
+after customizing 'shift-select-mode' to 'permanent'.
+
 ---
 ** The default value of 'frame-title-format' and 'icon-title-format' has changed.
 These variables are used to display the title bar of visible frames
index 1661346b3752ef321dc2757da617ac4ac9201a92..7da315e869221b6fcfbedea07460c21bd34934cb 100644 (file)
@@ -6660,9 +6660,16 @@ is temporarily turned on.  Furthermore, the mark will be deactivated
 by any subsequent point motion key that was not shift-translated, or
 by any action that normally deactivates the mark in Transient Mark mode.
 
+When the value is `permanent', the mark will be deactivated by any
+action which normally does that, but not by motion keys that were
+not shift-translated.
+
 See `this-command-keys-shift-translated' for the meaning of
 shift-translation."
-  :type 'boolean
+  :type '(choice (const :tag "Off" nil)
+                 (const :tag "Permanent" permanent)
+                 (other :tag "On" t))
+  :version "28.1"
   :group 'editing-basics)
 
 (defun handle-shift-selection ()
@@ -6680,7 +6687,12 @@ translation.
 Otherwise, if the region has been activated temporarily,
 deactivate it, and restore the variable `transient-mark-mode' to
 its earlier value."
-  (cond ((and shift-select-mode this-command-keys-shift-translated)
+  (cond ((and (eq shift-select-mode 'permanent)
+              this-command-keys-shift-translated)
+         (unless mark-active
+           (push-mark nil nil t)))
+        ((and shift-select-mode
+              this-command-keys-shift-translated)
          (unless (and mark-active
                      (eq (car-safe transient-mark-mode) 'only))
           (setq-local transient-mark-mode