diff options
author | Federico Igne <git@federicoigne.com> | 2020-05-23 10:45:45 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2020-05-23 10:45:45 +0100 |
commit | 682f9c27ab916894aa788a14b3520546c1da7ba6 (patch) | |
tree | c815445e0bbec960fba5e9b158af16574b04006b /st.h | |
parent | 5bf570ff51b54228e8be399387f6a4928f3edbbd (diff) | |
download | st-682f9c27ab916894aa788a14b3520546c1da7ba6.tar.gz st-682f9c27ab916894aa788a14b3520546c1da7ba6.zip |
Apply Scrollback patch
Homepage link: https://st.suckless.org/patches/scrollback/
Patch link:
https://st.suckless.org/patches/scrollback/st-scrollback-20200419-72e3f6c.diff
https://st.suckless.org/patches/scrollback/st-scrollback-mouse-20191024-a2c479c.diff
https://st.suckless.org/patches/scrollback/st-scrollback-mouse-altscreen-20200416-5703aa0.diff
https://st.suckless.org/patches/scrollback/st-scrollback-mouse-increment-0.8.2.diff
Additional info:
+ patch applied because I'm planning on ditching tmux, which currently
provides this functionality;
+ patches applied manually.
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -81,12 +81,15 @@ void die(const char *, ...); | |||
81 | void redraw(void); | 81 | void redraw(void); |
82 | void draw(void); | 82 | void draw(void); |
83 | 83 | ||
84 | void kscrolldown(const Arg *); | ||
85 | void kscrollup(const Arg *); | ||
84 | void printscreen(const Arg *); | 86 | void printscreen(const Arg *); |
85 | void printsel(const Arg *); | 87 | void printsel(const Arg *); |
86 | void sendbreak(const Arg *); | 88 | void sendbreak(const Arg *); |
87 | void toggleprinter(const Arg *); | 89 | void toggleprinter(const Arg *); |
88 | 90 | ||
89 | int tattrset(int); | 91 | int tattrset(int); |
92 | int tisaltscr(void); | ||
90 | void tnew(int, int); | 93 | void tnew(int, int); |
91 | void tresize(int, int); | 94 | void tresize(int, int); |
92 | void tsetdirtattr(int); | 95 | void tsetdirtattr(int); |