emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 45035aa: * xclip.el (xclip-get-selection): Tell wl-paste n


From: Stefan Monnier
Subject: [elpa] master 45035aa: * xclip.el (xclip-get-selection): Tell wl-paste not to add a newline
Date: Fri, 11 Oct 2019 12:26:49 -0400 (EDT)

branch: master
commit 45035aa27e6bb2fea6dee90c9065efc0c2c57e06
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * xclip.el (xclip-get-selection): Tell wl-paste not to add a newline
    
    Suggested by Nolan Wright <address@hidden>.
---
 packages/xclip/xclip.el | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/packages/xclip/xclip.el b/packages/xclip/xclip.el
index 1713bf7..ead5111 100644
--- a/packages/xclip/xclip.el
+++ b/packages/xclip/xclip.el
@@ -185,7 +185,12 @@ See also `x-set-selection'."
                   (replace-regexp-in-string "\\(.*\\)copy" "\\1paste"
                                             xclip-program 'fixedcase)
                   nil standard-output nil
-                  (if (memq type '(primary PRIMARY)) '("-p")))))
+                  ;; From wl-paste's doc:
+                  ;;   -n, --no-newline  Do not append a newline character
+                  ;;    after the pasted clipboard content. This option is
+                  ;;    automatically enabled for non-text content types and
+                  ;;    when using the --watch mode.
+                  "-n" (if (memq type '(primary PRIMARY)) '("-p")))))
         (`termux-clipboard-get
          (when (memq type '(clipboard CLIPBOARD))
            (call-process xclip-program nil standard-output nil)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]