From 8891202e6eb80c1162fd35cebcfa621ea586742e Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 24 Mar 2017 23:11:12 -0400 Subject: magit-copy-functions: Provide message when copying --- lisp/km-magit.el | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) (limited to 'lisp') diff --git a/lisp/km-magit.el b/lisp/km-magit.el index 4ae89e4..5f118af 100644 --- a/lisp/km-magit.el +++ b/lisp/km-magit.el @@ -456,14 +456,25 @@ COMMIT." (--when-let (magit-region-values 'commit) (deactivate-mark) (kill-new - (mapconcat #'identity it - (if read-separator (read-string "Separator: ") ", "))))) + (message + "%s" + (mapconcat #'identity + it + (if read-separator (read-string "Separator: ") ", ")))))) + +(defun km/magit-copy--truncated-message (msg) + (let ((msg-lines (split-string msg "[\n\r]+" 'omit-nulls))) + (message "%s" (cl-case (length msg-lines) + (0 msg) + (1 (car msg-lines)) + (t (concat (car msg-lines) "[...]")))))) (defun km/magit-copy-commit-message (&optional _) (magit-section-when message - (kill-new - (buffer-substring-no-properties (magit-section-start it) - (magit-section-end it))))) + (let ((msg (buffer-substring-no-properties (magit-section-start it) + (magit-section-end it)))) + (kill-new msg) + (km/magit-copy--truncated-message msg)))) (defun km/magit-copy-region-hunk (&optional no-column) (when (magit-section-internal-region-p) @@ -471,16 +482,19 @@ COMMIT." (deactivate-mark) (let ((text (buffer-substring-no-properties (region-beginning) (region-end)))) - (kill-new (if no-column - (replace-regexp-in-string "^[ \\+\\-]" "" text) - text)))))) + (setq text (if no-column + (replace-regexp-in-string "^[ \\+\\-]" "" text) + text)) + (kill-new text) + (km/magit-copy--truncated-message text))))) (defun km/magit-copy-hunk (&optional _) (magit-section-when hunk (kill-new (buffer-substring-no-properties (save-excursion (goto-char (magit-section-start it)) (1+ (point-at-eol))) - (magit-section-end it))))) + (magit-section-end it))) + (message "Copied hunk: %s" (magit-section-value it)))) (defun km/magit-copy-as-kill () "Try `km/magit-copy-functions' before calling `magit-copy-section-value'. -- cgit v1.2.3