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 /st.c | |
parent | 6166a1afc8c7875ce9ba62e5001040014269a26d (diff) | |
download | st-96c230e476a4fb446a8fa8d651c88fda32cd5427.tar.gz st-96c230e476a4fb446a8fa8d651c88fda32cd5427.tar.bz2 |
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 'st.c')
-rw-r--r-- | st.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -314,6 +314,8 @@ static void clippaste(const Arg *); static void numlock(const Arg *); static void selpaste(const Arg *); static void xzoom(const Arg *); +static void printscreen(const Arg *) ; +static void toggleprinter(const Arg *); /* Config.h for applying patches and the configuration. */ #include "config.h" @@ -2283,6 +2285,16 @@ tprinter(char *s, size_t len) { } void +toggleprinter(const Arg *arg) { + term.mode ^= MODE_PRINT; +} + +void +printscreen(const Arg *arg) { + tdump(); +} + +void tdumpline(int n) { Glyph *bp, *end; |