diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-07-08 14:22:52 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-07-08 14:22:52 -0400 |
commit | f9cd5efaa0208ee9f47c8a4a690a1d0221fe88a4 (patch) | |
tree | 3fcdaede62ae7b107b81cad91401374af609c3dc | |
parent | 7f231a6b5400933aee77daa2396db490067b644c (diff) |
shift-insert now pastes from clipboard
-rw-r--r-- | config.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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} }, |