From 8b10af3ae1c6ef04132b6cb719b7938ba55cec6a Mon Sep 17 00:00:00 2001 From: Kris Yotam Date: Tue, 27 Jan 2026 02:39:55 -0600 Subject: [PATCH] Add Ctrl+C and Ctrl+V keybindings for copy/paste Co-Authored-By: Claude Opus 4.5 --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index 01dff501f10370ae9754a57711992f4c2e13f665..59a6457206a8c99b194d7ad710b23d32eb1e4d23 100644 --- a/config.def.h +++ b/config.def.h @@ -265,8 +265,10 @@ static Shortcut shortcuts[] = { { MODKEY, XK_period, zoom, {.f = -1} }, { MODKEY, XK_g, zoomreset, {.f = 0} }, { ControlMask | ShiftMask, XK_C, clipcopy, {.i = 0} }, + { ControlMask, XK_c, clipcopy, {.i = 0} }, { ShiftMask, XK_Insert, clippaste, {.i = 0} }, { ControlMask | ShiftMask, XK_V, clippaste, {.i = 0} }, + { ControlMask, XK_v, clippaste, {.i = 0} }, { XK_ANY_MOD, Button2, selpaste, {.i = 0} }, { MODKEY, XK_Num_Lock, numlock, {.i = 0} }, { ControlMask | ShiftMask, XK_U, iso14755, {.i = 0} },