aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c12
1 files changed, 12 insertions, 0 deletions
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 *);
314static void numlock(const Arg *); 314static void numlock(const Arg *);
315static void selpaste(const Arg *); 315static void selpaste(const Arg *);
316static void xzoom(const Arg *); 316static void xzoom(const Arg *);
317static void printscreen(const Arg *) ;
318static void toggleprinter(const Arg *);
317 319
318/* Config.h for applying patches and the configuration. */ 320/* Config.h for applying patches and the configuration. */
319#include "config.h" 321#include "config.h"
@@ -2283,6 +2285,16 @@ tprinter(char *s, size_t len) {
2283} 2285}
2284 2286
2285void 2287void
2288toggleprinter(const Arg *arg) {
2289 term.mode ^= MODE_PRINT;
2290}
2291
2292void
2293printscreen(const Arg *arg) {
2294 tdump();
2295}
2296
2297void
2286tdumpline(int n) { 2298tdumpline(int n) {
2287 Glyph *bp, *end; 2299 Glyph *bp, *end;
2288 2300