vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 0c6222c67bdbd45924d6c8cfb162700016108a03
parent e25f108fe6e7c1107386f322fc5aed8346e07a19
Author: Matěj Cepl <mcepl@cepl.eu>
Date:   Fri, 31 Dec 2021 20:20:36 +0100

wl-paste and wl-copy should not add \n to the end of the clipboard.

Diffstat:
Mvis-clipboard | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vis-clipboard b/vis-clipboard @@ -91,9 +91,9 @@ vc_wlclipboard_copy() { vc_wlclipboard_paste() { if [ "$sel" = "primary" ]; then - wl-paste --primary -t text + wl-paste --no-newline --primary -t text else - wl-paste -t text + wl-paste --no-newline -t text fi }