st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit adde5c6d9dec3a0ab4d78b9d6e70b970ffb33a05
parent f876810626773828747f48675a6d1f33dc163662
Author: Christoph Lohmann <20h@r-36.net>
Date:   Fri, 29 Mar 2013 18:45:09 +0100

Adding PgUp + Ctrl.

Thanks stargrave@stargrave.org!

Diffstat:
Mconfig.def.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -216,6 +216,7 @@ static Key key[] = {
     { XK_End,           ShiftMask,      "\033[1;2F",    +1,    0,    0},
     { XK_End,           XK_ANY_MOD,     "\033[4~",       0,    0,    0},
     { XK_Prior,         ControlMask,    "\033[5;5~",     0,    0,    0},
+    { XK_Prior,         ShiftMask,      "\033[5;2~",     0,    0,    0},
     { XK_Prior,         XK_NO_MOD,      "\033[5~",       0,    0,    0},
     { XK_Next,          ControlMask,    "\033[6;5~",     0,    0,    0},
     { XK_Next,          ShiftMask,      "\033[6;2~",     0,    0,    0},