unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#55692: 29.0.50; delete-selection-mode: Replace region only if set using the mouse
@ 2022-05-28 17:33 Visuwesh
  2022-05-28 19:10 ` Eli Zaretskii
  0 siblings, 1 reply; 13+ messages in thread
From: Visuwesh @ 2022-05-28 17:33 UTC (permalink / raw)
  To: 55692

[-- Attachment #1: Type: text/plain, Size: 354 bytes --]

Tags: patch

Motivation: I often find myself annoyed by `delete-selection-mode' when
using the keyboard since the region in Emacs does not translate to text
selections in other applications.  On the contrary, I find myself
wanting the behaviour of `delete-selection-mode' for regions set using
the mouse.  Attached patch adds an user option to do that.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-delete-selection-mode-Add-user-option-to-delete-mous.patch --]
[-- Type: text/x-patch, Size: 2062 bytes --]

From 3db630457b46bb25514a8041eeb80f35e73ef40c Mon Sep 17 00:00:00 2001
From: Visuwesh <visuweshm@gmail.com>
Date: Sat, 28 May 2022 22:52:19 +0530
Subject: [PATCH] delete-selection-mode: Add user option to delete mouse
 regions only

* lisp/delsel.el (delete-selection-mouse-selection-only): Add new user option.
(delete-selection-pre-hook): Respect it.
* etc/NEWS: Announce the new user option.
---
 etc/NEWS       | 4 ++++
 lisp/delsel.el | 9 +++++++++
 2 files changed, 13 insertions(+)

diff --git a/etc/NEWS b/etc/NEWS
index 3065fa85d3..100be767b3 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -265,6 +265,10 @@ startup.  Previously, these functions ignored
 * Changes in Emacs 29.1
 
 +++
+** New user option 'delete-selection-mouse-selection-only'.
+When non-nil, 'delete-selection-mode' will only delete the active
+region if it was set using the mouse.
+
 ** New user option 'switch-to-prev-buffer-skip-regexp'.
 This should be a regexp or a list of regexps; buffers whose names
 match those regexps will be ignored by 'switch-to-prev-buffer' and
diff --git a/lisp/delsel.el b/lisp/delsel.el
index f5fe7cf793..a011be9ede 100644
--- a/lisp/delsel.el
+++ b/lisp/delsel.el
@@ -64,6 +64,12 @@ delete-selection-save-to-register
   "If non-nil, deleted region text is stored in this register.
 Value must be the register (key) to use.")
 
+(defcustom delete-selection-mouse-selection-only nil
+  "If non-nil, delete the region only if set using the mouse."
+  :version "29.1"
+  :group 'editing-basics
+  :type 'boolean)
+
 ;;;###autoload
 (defalias 'pending-delete-mode 'delete-selection-mode)
 
@@ -251,6 +257,9 @@ delete-selection-pre-hook
 have this property won't delete the selection.
 See `delete-selection-helper'."
   (when (and delete-selection-mode (use-region-p)
+             (if delete-selection-mouse-selection-only
+                 (mouse-region-match)
+               t)
 	     (not buffer-read-only))
     (delete-selection-helper (and (symbolp this-command)
                                   (get this-command 'delete-selection)))))
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2022-09-06 10:59 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-28 17:33 bug#55692: 29.0.50; delete-selection-mode: Replace region only if set using the mouse Visuwesh
2022-05-28 19:10 ` Eli Zaretskii
2022-05-29  6:17   ` Visuwesh
2022-05-29  6:52     ` Eli Zaretskii
2022-05-29  8:10       ` Visuwesh
2022-05-29  9:04         ` Eli Zaretskii
2022-05-29 14:53           ` Visuwesh
2022-05-29 17:10             ` Eli Zaretskii
2022-05-31 10:44               ` Visuwesh
2022-05-31 14:33                 ` Drew Adams
2022-06-01 16:04                 ` Eli Zaretskii
2022-06-01 17:03                   ` Visuwesh
2022-09-06 10:59                     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).