applied st-scrollback-mouse-altscreen-20190131-e23acb9.diff

This commit is contained in:
Andrius Solopovas 2019-09-02 10:58:47 +01:00
parent 4a9b405ab0
commit 17313e8f58
4 changed files with 19 additions and 7 deletions

View file

@ -194,8 +194,10 @@ ResourcePref resources[] = {
*/
static MouseShortcut mshortcuts[] = {
/* button mask string */
{ Button4, XK_NO_MOD, "\031" },
{ Button5, XK_NO_MOD, "\005" },
/*
* { Button4, XK_NO_MOD, "\031" },
* { Button5, XK_NO_MOD, "\005" },
*/
};
/* Internal keyboard shortcuts. */
@ -206,6 +208,8 @@ MouseKey mkeys[] = {
/* button mask function argument */
{ Button4, ShiftMask, kscrollup, {.i = 1} },
{ Button5, ShiftMask, kscrolldown, {.i = 1} },
{ Button4, XK_NO_MOD, kscrollup, {.i = 1} },
{ Button5, XK_NO_MOD, kscrolldown, {.i = 1} },
{ Button4, MODKEY, kscrollup, {.i = 1} },
{ Button5, MODKEY, kscrolldown, {.i = 1} },
{ Button4, TERMMOD, zoom, {.f = +1} },

5
st.c
View file

@ -1060,6 +1060,11 @@ tnew(int col, int row)
treset();
}
int tisaltscr(void)
{
return IS_SET(MODE_ALTSCREEN);
}
void
tswapscreen(void)
{

1
st.h
View file

@ -97,6 +97,7 @@ void sendbreak(const Arg *);
void toggleprinter(const Arg *);
int tattrset(int);
int tisaltscr(void);
void tnew(int, int);
void tresize(int, int);
void tsetdirtattr(int);

2
x.c
View file

@ -442,6 +442,7 @@ bpress(XEvent *e)
return;
}
if (tisaltscr()) {
for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) {
if (e->xbutton.button == ms->b
&& match(ms->mask, e->xbutton.state)) {
@ -449,6 +450,7 @@ bpress(XEvent *e)
return;
}
}
}
for (mk = mkeys; mk < mkeys + LEN(mkeys); mk++) {
if (e->xbutton.button == mk->b