diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-10-04 16:53:12 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-10-04 16:53:12 -0400 |
commit | 523d83e6abaeb50ac6e7315e6436a2ebfb188e52 (patch) | |
tree | 76d9cbbdce74637ab0a9214ff32623555a14b172 /config.h | |
parent | 53b4c270aac027606787b02bf79d7c62ce472485 (diff) |
copy/paste fixes
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -212,9 +212,9 @@ static Shortcut shortcuts[] = { { MODKEY|ShiftMask, XK_Next, zoom, {.f = -1} }, { MODKEY|ShiftMask, XK_Home, zoomreset, {.f = 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} }, + { MODKEY, XK_c, clipcopy, {.i = 0} }, + { MODKEY, XK_v, clippaste, {.i = 0} }, + { MODKEY, XK_p, selpaste, {.i = 0} }, { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, { MODKEY, XK_Control_L, iso14755, {.i = 0} }, { ShiftMask, XK_Page_Up, kscrollup, {.i = -1} }, |