summaryrefslogtreecommitdiff
path: root/x.c
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2022-07-17 04:23:50 +0300
committertsxv478 <vt0451@yandex.ru>2022-07-17 04:23:50 +0300
commit02760c4ad088e94d69976b5d5367b918fccd69bf (patch)
tree7bcaa8560049cb923862b2fabf7899d01058a5d1 /x.c
parent1249b14c3c2f976e3253ba7339d67ccd03ee6868 (diff)
scrollback mouse altscreen patch
Diffstat (limited to 'x.c')
-rw-r--r--x.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/x.c b/x.c
index 2a3bd38..b50f5fc 100644
--- a/x.c
+++ b/x.c
@@ -34,6 +34,7 @@ typedef struct {
void (*func)(const Arg *);
const Arg arg;
uint release;
+ int altscrn; /* 0: don't care, -1: not alt screen, 1: alt screen */
} MouseShortcut;
typedef struct {
@@ -455,6 +456,7 @@ mouseaction(XEvent *e, uint release)
for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) {
if (ms->release == release &&
ms->button == e->xbutton.button &&
+ (!ms->altscrn || (ms->altscrn == (tisaltscr() ? 1 : -1))) &&
(match(ms->mod, state) || /* exact or forced */
match(ms->mod, state & ~forcemousemod))) {
ms->func(&(ms->arg));