mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
3eb170a9a5
The openurlonclick and scrollback patches are now working together, so links can be clicked in the scrollback buffer too. This update also adds url underlining and other improvements to the openurlonclick patch. The full list of changes in the openurlonclick patch: - Adds scrollback support - Adds modkey option - Better url detection - Underlines url when the mouse pointer is over a link - Opens a browser as a background process, so it won't lock the terminal anymore - Fixes a segmentation fault bug
38 lines
795 B
C
38 lines
795 B
C
/* Patches */
|
|
#if COPYURL_PATCH || COPYURL_HIGHLIGHT_SELECTED_URLS_PATCH
|
|
#include "copyurl.h"
|
|
#endif
|
|
#if EXTERNALPIPE_PATCH
|
|
#include "externalpipe.h"
|
|
#endif
|
|
#if ISO14755_PATCH
|
|
#include "iso14755.h"
|
|
#endif
|
|
#if KEYBOARDSELECT_PATCH
|
|
#include "keyboardselect_st.h"
|
|
#endif
|
|
#if OPENURLONCLICK_PATCH
|
|
#include "openurlonclick.h"
|
|
#endif
|
|
#if RIGHTCLICKTOPLUMB_PATCH
|
|
#include "rightclicktoplumb_st.h"
|
|
#endif
|
|
#if NEWTERM_PATCH
|
|
#include "newterm.h"
|
|
#endif
|
|
#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
|
|
#if SYNC_PATCH
|
|
#include "sync.h"
|
|
#endif
|
|
// #if VIM_BROWSE_PATCH
|
|
// #include "normalMode.h"
|
|
// #endif
|