aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Edgar2013-12-15 16:45:51 +0100
committerRoberto E. Vargas Caballero2013-12-18 08:10:22 +0100
commita33117a5f76ef3c3c25c646ecd1956c989fdc8ee (patch)
tree50be173c1ae69d147c843917e2681bf546d03609
parent961a79d8cd6a4debec0291a64a7aa8a98458bcec (diff)
downloadaur-a33117a5f76ef3c3c25c646ecd1956c989fdc8ee.tar.gz
Fix definition of F28 key.
Shitf modifier adds 12 to the function number of the function keys, while Control adds 24, so Control + F4 generates F28
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 2a7e09863e3b..ca49afdfdb49 100644
--- a/config.def.h
+++ b/config.def.h
@@ -281,7 +281,7 @@ static Key key[] = {
{ XK_F3, /* F63 */ Mod3Mask, "\033[1;4R", 0, 0, 0},
{ XK_F4, XK_NO_MOD, "\033OS" , 0, 0, 0},
{ XK_F4, /* F16 */ ShiftMask, "\033[1;2S", 0, 0, 0},
- { XK_F4, /* F28 */ ShiftMask, "\033[1;5S", 0, 0, 0},
+ { XK_F4, /* F28 */ ControlMask, "\033[1;5S", 0, 0, 0},
{ XK_F4, /* F40 */ Mod4Mask, "\033[1;6S", 0, 0, 0},
{ XK_F4, /* F52 */ Mod1Mask, "\033[1;3S", 0, 0, 0},
{ XK_F5, XK_NO_MOD, "\033[15~", 0, 0, 0},