GNU bug report logs -
#65380
[PATCH] Add command to copy contents in a diff-mode buffer
Previous Next
Reported by: Philip Kaludercic <philipk <at> posteo.net>
Date: Sat, 19 Aug 2023 09:55:01 UTC
Severity: normal
Tags: patch
Done: Philip Kaludercic <philipk <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
Message #134 received at 65380 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Eli Zaretskii <eliz <at> gnu.org> writes:
>> From: Philip Kaludercic <philipk <at> posteo.net>
>> Cc: juri <at> linkov.net, 65380 <at> debbugs.gnu.org
>> Date: Tue, 20 Aug 2024 21:35:06 +0000
>>
>> > Yes, but the connection between that and what you mean by "deleted
>> > text" might not be obvious to everyone.
>>
>> OK on both counts, here is the updated version:
>
> Thanks.
>
>> +*** New command 'diff-kill-ring-save'
>> +This command copies out the modified contents out of a diff, without
> ^^^ ^^^
> One of these two "outs"s should be removed, I think.
>
>> +having to apply it first. If the selected range extends a hunk, the
>> +commands attempts to look up and copy the text between from the
>> +referenced file.
>
> I think it is better to say "copies to the kill-ring the modified
> contents..."
Ugh, I forgot to amend by last patch, this is the current version:
This command copies to the 'kill-ring' a region of text modified
according to diffs in the current buffer, but without applying the
diffs to the original text. If the selected range extends a hunk, the
commands attempts to look up and copy the text in-between the
hunks.
I am thinking about splitting the first sentence up into
This command copies text out of a diff to the 'kill-ring'. By default
it will use the text the diff would modify, without having to apply a
hunk. If the selected range extends a hunk, the commands attempts to
look up and copy the text in-between the hunks.
WDYT?
Here is the patch as it is:
[0001-Add-command-to-copy-contents-in-a-diff-mode-buffer.patch (text/x-patch, inline)]
From 494b9ea69a501f3420c8eee1080d7d45637e39d5 Mon Sep 17 00:00:00 2001
From: Philip Kaludercic <philipk <at> posteo.net>
Date: Sat, 19 Aug 2023 11:47:54 +0200
Subject: [PATCH] Add command to copy contents in a diff-mode buffer
* lisp/vc/diff-mode.el (diff-mode-shared-map): Bind 'diff-kill-ring-save'.
(diff-mode-map): Ensure the "w" binding does not get prefixed.
(diff-kill-ring-save): Add the command.
* etc/NEWS: Mention 'diff-kill-ring-save'. (Bug#65380)
---
etc/NEWS | 10 +++++++++
lisp/vc/diff-mode.el | 52 +++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 61 insertions(+), 1 deletion(-)
diff --git a/etc/NEWS b/etc/NEWS
index b89a80aa14d..25ceb408e2c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -210,6 +210,16 @@ The host name for Kubernetes connections can be of kind
used. This overrides the setiing in 'tramp-kubernetes-namespace', if
any.
+** Diff
+
+---
+*** New command 'diff-kill-ring-save'
+This command copies to the 'kill-ring' a region of text modified
+according to diffs in the current buffer, but without applying the
+diffs to the original text. If the selected range extends a hunk, the
+commands attempts to look up and copy the text in-between the
+hunks.
+
* New Modes and Packages in Emacs 31.1
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el
index 81e8b23ee33..4810b9ce01c 100644
--- a/lisp/vc/diff-mode.el
+++ b/lisp/vc/diff-mode.el
@@ -196,6 +196,7 @@ diff-mode-shared-map
"RET" #'diff-goto-source
"<mouse-2>" #'diff-goto-source
"W" #'widen
+ "w" #'diff-kill-ring-save
"o" #'diff-goto-source ; other-window
"A" #'diff-ediff-patch
"r" #'diff-restrict-view
@@ -208,7 +209,7 @@ diff-mode-map
;; We want to inherit most bindings from
;; `diff-mode-shared-map', but not all since they may hide
;; useful `M-<foo>' global bindings when editing.
- (dolist (key '("A" "r" "R" "g" "q" "W" "z"))
+ (dolist (key '("A" "r" "R" "g" "q" "W" "w" "z"))
(keymap-set map key nil))
map)
;; From compilation-minor-mode.
@@ -2108,6 +2109,55 @@ diff-goto-source
(goto-char (+ (car pos) (cdr src)))
(when buffer (next-error-found buffer (current-buffer))))))
+(defun diff-kill-ring-save (beg end &optional reverse)
+ "Save to `kill-ring' the result of applying diffs in region between BEG and END.
+By default the command will copy the text that applying the diff would
+produce, along with the text between hunks. If REVERSE is non-nil, or
+the command was invoked with a prefix argument, copy the lines that the
+diff would remove (beginning with \"+\" or \"<\")."
+ (interactive
+ (append (if (use-region-p)
+ (list (region-beginning) (region-end))
+ (save-excursion
+ (list (diff-beginning-of-hunk)
+ (diff-end-of-hunk))))
+ (list current-prefix-arg)))
+ (unless (derived-mode-p 'diff-mode)
+ (user-error "Command can only be invoked in a diff-buffer"))
+ (let ((parts '()))
+ (save-excursion
+ (goto-char beg)
+ (catch 'break
+ (while t
+ (let ((hunk (diff-hunk-text
+ (buffer-substring
+ (save-excursion (diff-beginning-of-hunk))
+ (save-excursion (min (diff-end-of-hunk) end)))
+ (not reverse)
+ (save-excursion
+ (- (point) (diff-beginning-of-hunk))))))
+ (push (substring (car hunk) (cdr hunk))
+ parts))
+ ;; check if we have copied everything
+ (diff-end-of-hunk)
+ (when (<= end (point)) (throw 'break t))
+ ;; copy the text between hunks
+ (let ((inhibit-message t) start)
+ (save-window-excursion
+ (save-excursion
+ (forward-line -1)
+ ;; FIXME: Detect if the line we jump to doesn't match
+ ;; the line in the diff.
+ (diff-goto-source t)
+ (forward-line +1)
+ (setq start (point))))
+ (save-window-excursion
+ (diff-goto-source t)
+ (push (buffer-substring start (point))
+ parts))))))
+ (kill-new (string-join (nreverse parts)))
+ (setq deactivate-mark t)
+ (message (if reverse "Copied original text" "Copied modified text"))))
(defun diff-current-defun ()
"Find the name of function at point.
--
2.46.0
[Message part 3 (text/plain, inline)]
--
Philip Kaludercic on peregrine
This bug report was last modified 273 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.