Adding key and mouse binding option to control whether they apply to primary screen, alt screen or both ref. #81

This commit is contained in:
Bakkeby 2022-09-01 22:01:20 +02:00
parent 89ced627cd
commit 34cd955f14
8 changed files with 36 additions and 61 deletions

View file

@ -20,9 +20,6 @@
#if SCROLLBACK_PATCH || SCROLLBACK_MOUSE_PATCH || SCROLLBACK_MOUSE_ALTSCREEN_PATCH
#include "scrollback.c"
#endif
#if UNIVERSCROLL_PATCH || SCROLLBACK_MOUSE_ALTSCREEN_PATCH
#include "universcroll.c"
#endif
#if SIXEL_PATCH
#include "sixel_st.c"
#endif

View file

@ -23,9 +23,6 @@
#if SCROLLBACK_PATCH || SCROLLBACK_MOUSE_PATCH || SCROLLBACK_MOUSE_ALTSCREEN_PATCH
#include "scrollback.h"
#endif
#if UNIVERSCROLL_PATCH || SCROLLBACK_MOUSE_ALTSCREEN_PATCH
#include "universcroll.h"
#endif
#if SIXEL_PATCH
#include "sixel_st.h"
#endif

View file

@ -1,5 +0,0 @@
int
tisaltscr(void)
{
return IS_SET(MODE_ALTSCREEN);
}

View file

@ -1 +0,0 @@
int tisaltscr(void);