commit 8b10af3ae1c6ef04132b6cb719b7938ba55cec6a
parent e399d28ae49b0c778c3051b01a08ef9f09d3d96d
Author: Kris Yotam <krisyotam@protonmail.com>
Date: Tue, 27 Jan 2026 02:39:55 -0600
Add Ctrl+C and Ctrl+V keybindings for copy/paste
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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} },