X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=st.h;h=71c79f4c83c86021aa55b3f04d8489f5c41ee399;hb=416dd257274fd334be082b1138338adffa3e2d5e;hp=9314607bb82d34c98b2815d87ec1432610f07ceb;hpb=75c9a0ee1d232a1a177746d97a13cf92b03da44a;p=st.git diff --git a/st.h b/st.h index 9314607..71c79f4 100644 --- a/st.h +++ b/st.h @@ -134,12 +134,6 @@ typedef struct { int cursor; /* cursor style */ } TermWindow; -typedef struct { - uint b; - uint mask; - char *s; -} MouseShortcut; - typedef struct { int mode; int type; @@ -170,23 +164,6 @@ typedef union { const void *v; } Arg; -typedef struct { - uint mod; - KeySym keysym; - void (*func)(const Arg *); - const Arg arg; -} Shortcut; - -typedef struct { - KeySym k; - uint mask; - char *s; - /* three valued logic variables: 0 indifferent, 1 on, -1 off */ - signed char appkey; /* application keypad */ - signed char appcursor; /* application cursor */ - signed char crlf; /* crlf mode */ -} Key; - void die(const char *, ...); void redraw(void);