diff options
author | 2023-04-03 11:03:24 +0200 | |
---|---|---|
committer | 2024-05-02 23:01:26 +0200 | |
commit | 82b903b3ef5e382fd8de488d10489b1314690f4a (patch) | |
tree | e59c5f516cf58d49637128c1f60b3a4aa97dcea0 /st.h | |
parent | 5dbcca49263be094fc38159c297458ae323ef647 (diff) | |
download | st-82b903b3ef5e382fd8de488d10489b1314690f4a.tar.gz st-82b903b3ef5e382fd8de488d10489b1314690f4a.zip |
Add scrollback
Scroll back through terminal output using Shift+{PageUp, PageDown}.
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -81,6 +81,8 @@ void die(const char *, ...); void redraw(void); void draw(void); +void kscrolldown(const Arg *); +void kscrollup(const Arg *); void printscreen(const Arg *); void printsel(const Arg *); void sendbreak(const Arg *); |