structure: deleted unneeded lines and formatted tables
This commit is contained in:
parent
95f8840aa4
commit
a44caa28b0
23
config.h
23
config.h
@ -167,30 +167,29 @@ static uint forcemousemod = ShiftMask;
|
|||||||
* Beware that overloading Button1 will disable the selection.
|
* Beware that overloading Button1 will disable the selection.
|
||||||
*/
|
*/
|
||||||
static MouseShortcut mshortcuts[] = {
|
static MouseShortcut mshortcuts[] = {
|
||||||
/* mask button function argument release */
|
/* mask button function argument release */
|
||||||
{ Button4, XK_NO_MOD, "\031" },
|
{ Button4, XK_NO_MOD, "\031" },
|
||||||
{ Button5, XK_NO_MOD, "\005" },
|
{ Button5, XK_NO_MOD, "\005" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Internal keyboard shortcuts. */
|
/* Internal keyboard shortcuts. */
|
||||||
#define MODKEY Mod1Mask
|
#define MODKEY Mod1Mask
|
||||||
#define TERMMOD (ControlMask|ShiftMask)
|
|
||||||
|
|
||||||
static Shortcut shortcuts[] = {
|
static Shortcut shortcuts[] = {
|
||||||
/* mask keysym function argument */
|
/* mask keysym function argument */
|
||||||
{ MODKEY, XK_Break, sendbreak, {.i = 0} },
|
{ MODKEY, XK_Break, sendbreak, {.i = 0} },
|
||||||
{ MODKEY, XK_Print, toggleprinter, {.i = 0} },
|
{ MODKEY, XK_Print, toggleprinter, {.i = 0} },
|
||||||
{ MODKEY, XK_Print, printscreen, {.i = 0} },
|
{ MODKEY, XK_Print, printscreen, {.i = 0} },
|
||||||
{ ShiftMask, XK_Insert, clippaste, {.i = 0} },
|
{ ShiftMask, XK_Insert, clippaste, {.i = 0} },
|
||||||
{ MODKEY, XK_c, clipcopy, {.i = 0} },
|
{ MODKEY, XK_c, clipcopy, {.i = 0} },
|
||||||
{ MODKEY, XK_v, clippaste, {.i = 0} },
|
{ MODKEY, XK_v, clippaste, {.i = 0} },
|
||||||
{ MODKEY, XK_p, selpaste, {.i = 0} },
|
{ MODKEY, XK_p, selpaste, {.i = 0} },
|
||||||
{ MODKEY, XK_Num_Lock, numlock, {.i = 0} },
|
{ MODKEY, XK_Num_Lock, numlock, {.i = 0} },
|
||||||
{ MODKEY, XK_k, kscrollup, {.i = 1} },
|
{ MODKEY, XK_k, kscrollup, {.i = 1} },
|
||||||
{ MODKEY, XK_j, kscrolldown, {.i = 1} },
|
{ MODKEY, XK_j, kscrolldown, {.i = 1} },
|
||||||
{ MODKEY, XK_U, zoom, {.f = +1} },
|
{ MODKEY, XK_U, zoom, {.f = +1} },
|
||||||
{ MODKEY|ShiftMask, XK_U, zoom, {.f = +1} },
|
{ MODKEY|ShiftMask, XK_U, zoom, {.f = +1} },
|
||||||
{ MODKEY|ShiftMask, XK_I, zoom, {.f = -1} },
|
{ MODKEY|ShiftMask, XK_I, zoom, {.f = -1} },
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user