aboutsummaryrefslogtreecommitdiff
path: root/st/st-plumber-0.9.diff
diff options
context:
space:
mode:
Diffstat (limited to 'st/st-plumber-0.9.diff')
-rw-r--r--st/st-plumber-0.9.diff36
1 files changed, 36 insertions, 0 deletions
diff --git a/st/st-plumber-0.9.diff b/st/st-plumber-0.9.diff
new file mode 100644
index 0000000..c13327e
--- /dev/null
+++ b/st/st-plumber-0.9.diff
@@ -0,0 +1,36 @@
+From 85588b5d9b832c1c66d745e0ea097bcc3d83964a Mon Sep 17 00:00:00 2001
+From: Ratakor <ratakor@disroot.org>
+Date: Tue, 15 Aug 2023 14:33:12 +0200
+Subject: [PATCH] plumber patch
+
+---
+ x.c | 6 ++++++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/x.c b/x.c
+index aa09997..c9b5ea3 100644
+--- a/x.c
++++ b/x.c
+@@ -471,6 +471,7 @@ bpress(XEvent *e)
+ int btn = e->xbutton.button;
+ struct timespec now;
+ int snap;
++ char *sel;
+
+ if (1 <= btn && btn <= 11)
+ buttons |= 1 << (btn-1);
+@@ -500,6 +501,11 @@ bpress(XEvent *e)
+ xsel.tclick1 = now;
+
+ selstart(evcol(e), evrow(e), snap);
++ if (snap == SNAP_WORD && (sel = getsel())) {
++ if (fork() == 0)
++ execlp("plumber", "plumber", "-t", sel);
++ free(sel);
++ }
+ }
+ }
+
+--
+2.41.0
+