diff options
author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-01-31 23:05:42 +0100 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-03-06 07:53:15 +0100 |
commit | 96c230e476a4fb446a8fa8d651c88fda32cd5427 (patch) | |
tree | a56a80d850881e004f0c61a40ab24676f9fe79ac /config.def.h | |
parent | 6166a1afc8c7875ce9ba62e5001040014269a26d (diff) | |
download | st-96c230e476a4fb446a8fa8d651c88fda32cd5427.tar.gz st-96c230e476a4fb446a8fa8d651c88fda32cd5427.zip |
Add key definition for printer sequences
These new combinations generate the same behaviour (basically) of
vt102. It is a good way of communicating st with other programs.
[0] http://www.vt100.net/docs/vt102-ug/chapter2.html
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b31d7d6..47018a3 100644 --- a/config.def.h +++ b/config.def.h | |||
@@ -107,6 +107,8 @@ static Mousekey mshortcuts[] = { | |||
107 | 107 | ||
108 | static Shortcut shortcuts[] = { | 108 | static Shortcut shortcuts[] = { |
109 | /* mask keysym function argument */ | 109 | /* mask keysym function argument */ |
110 | { ControlMask, XK_Print, toggleprinter, {.i = 0} }, | ||
111 | { ShiftMask, XK_Print, printscreen, {.i = 0} }, | ||
110 | { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} }, | 112 | { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} }, |
111 | { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} }, | 113 | { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} }, |
112 | { ShiftMask, XK_Insert, selpaste, {.i = 0} }, | 114 | { ShiftMask, XK_Insert, selpaste, {.i = 0} }, |