vis

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

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

commit 11f834793a07de40405af78ffb71d79f99477155
parent 5cce69780e825ccac3f0d9957b1bc8a3d9b5e29a
Author: runitclean <runitclean@disroot.org>
Date:   Mon, 18 Aug 2025 07:17:05 +0000

Fixes waycopy hanging due to unclosed stderr fd

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

diff --git a/vis-clipboard b/vis-clipboard @@ -117,9 +117,9 @@ vc_wlclipboard_paste() { vc_wayclip_copy() { if [ "$sel" = "primary" ]; then - waycopy -p + waycopy -p 2>/dev/null else - waycopy + waycopy 2>/dev/null fi }