st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit 3be4cf11d79ca87ff1fbbb57801913ec6f822429
parent 16d98738e74f189b3a00c23390ab5a9a22b056a1
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu, 10 Jan 2019 18:16:17 +0100

config: add Shift+Insert as selpaste() again

This was changed before in:
commit 20f713548de451b67db3306cf8cf7b2f38fee05c on Wed Jan 25 19:17:38 2017

Diffstat:
Mconfig.def.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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} },
 };