diff options
author | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2020-04-10 22:06:32 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-04-11 15:23:20 +0200 |
commit | 21e0d6e8b8d20903494386e7e6f43201b3761154 (patch) | |
tree | 5b05d14922679f2560855d5734314336c16cade2 /st.h | |
parent | 5703aa0390484dd7da4bd9c388c85708d8fcd339 (diff) |
Add support for scroll(1)
Scroll is a program that stores all the lines of its child and be used in st as
a way of implementing scrollback.
This solution is much better than implementing the scrollback in st itself
because having a different program allows to use it in any other program
without doing modifications to those programs.
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -113,6 +113,7 @@ char *xstrdup(char *); /* config.h globals */ extern char *utmp; +extern char *scroll; extern char *stty_args; extern char *vtiden; extern wchar_t *worddelimiters; |