X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=st.c;h=9f9c1610328d5968de4cc04720952016d0d39765;hb=96c230e476a4fb446a8fa8d651c88fda32cd5427;hp=1711842e472cd93abcd003d0ee7d0dd698427e11;hpb=6166a1afc8c7875ce9ba62e5001040014269a26d;p=st.git diff --git a/st.c b/st.c index 1711842..9f9c161 100644 --- a/st.c +++ b/st.c @@ -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" @@ -2282,6 +2284,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;