summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-20 21:52:16 +0000
committerGitHub <noreply@github.com>2026-05-20 21:52:16 +0000
commitf03dee2aa509030f4383814c1e49b33e0cab9c0d (patch)
tree408096078532d18dc0dc06d02b7c0ce93ce3e9bb /st.h
parentfb009d1cb85bb2e19cf267fe794cf9ab626c9792 (diff)
update to st 0.9.3
Diffstat (limited to 'st.h')
-rw-r--r--st.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/st.h b/st.h
index 8220966..8c46deb 100644
--- a/st.h
+++ b/st.h
@@ -19,6 +19,7 @@
#define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
#define IS_TRUECOL(x) (1 << 24 & (x))
+#define HISTSIZE 2000
enum glyph_attribute {
ATTR_NULL = 0,
@@ -82,8 +83,6 @@ 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 *);
@@ -136,4 +135,3 @@ extern unsigned int defaultfg;
extern unsigned int defaultbg;
extern unsigned int defaultcs;
extern const int boxdraw, boxdraw_bold, boxdraw_braille;
-extern float alpha;