shithub: acme

Download patch

ref: 3e9bb706c4e265e40855bd6e829220413ba4913a
parent: fc221bab2ca5b2dff5df4db9a1e9845954e1473f
author: glenda <glenda@cirno>
date: Tue Apr 1 16:49:56 EDT 2025

add ctl+c/v/x

--- a/text.c
+++ b/text.c
@@ -701,6 +701,17 @@
 	nr = 1;
 	rp = &r;
 	switch(r){
+	case 0x03:	/* ^C: copy selection to snarf buffer */
+		if(t->q0 != t->q1)
+			cut(t, t, nil, TRUE, FALSE, nil, 0);
+		return;
+	case 0x16:	/* ^V: paste from snarf buffer */
+		paste(t, t, nil, TRUE, TRUE, nil, 0);
+		return;
+	case 0x18:	/* ^X: cut selection to snarf buffer */
+		if(t->q0 != t->q1)
+			cut(t, t, nil, TRUE, TRUE, nil, 0);
+		return;
 	case Kleft:
 		typecommit(t);
 		if(t->q0 > 0)