diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-01-10 18:16:17 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-01-10 18:16:17 +0100 |
commit | 3be4cf11d79ca87ff1fbbb57801913ec6f822429 (patch) | |
tree | 0cc22be8faab5feae73bb538da411bf7f4c49298 /config.def.h | |
parent | 16d98738e74f189b3a00c23390ab5a9a22b056a1 (diff) |
config: add Shift+Insert as selpaste() again
This was changed before in:
commit 20f713548de451b67db3306cf8cf7b2f38fee05c on Wed Jan 25 19:17:38 2017
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 823e79f..0e01717 100644 --- a/config.def.h +++ b/config.def.h @@ -176,6 +176,7 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_C, clipcopy, {.i = 0} }, { TERMMOD, XK_V, clippaste, {.i = 0} }, { TERMMOD, XK_Y, selpaste, {.i = 0} }, + { ShiftMask, XK_Insert, selpaste, {.i = 0} }, { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, }; |