From f9cd5efaa0208ee9f47c8a4a690a1d0221fe88a4 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 8 Jul 2018 14:22:52 -0400 Subject: [PATCH] shift-insert now pastes from clipboard --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index d996ffb..0297a75 100644 --- a/config.h +++ b/config.h @@ -211,7 +211,7 @@ static Shortcut shortcuts[] = { { MODKEY|ShiftMask, XK_Prior, zoom, {.f = +1} }, { MODKEY|ShiftMask, XK_Next, zoom, {.f = -1} }, { MODKEY|ShiftMask, XK_Home, zoomreset, {.f = 0} }, - { ShiftMask, XK_Insert, selpaste, {.i = 0} }, + { ShiftMask, XK_Insert, clippaste, {.i = 0} }, { MODKEY|ShiftMask, XK_Insert, clippaste, {.i = 0} }, { MODKEY|ShiftMask, XK_C, clipcopy, {.i = 0} }, { MODKEY|ShiftMask, XK_V, clippaste, {.i = 0} },