mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
e88f2bf20c
The general reasoning is that the vim browse patch is very invasive, has a high level of complexity, and is incompatible with a significant number of other patches and it complicates further maintenance. Additionally the patch has its own scrollback mechanism which seemingly did not work properly - and nobody seems to have complained about this since the patch was added back in May 2021. If you want to try out the vim browse patch then I would recommend having a play around with the patch author's own build that has this patch integrated: - https://github.com/juliusHuelsmann/st-history-vim - https://github.com/juliusHuelsmann/st Alternatively a tag has been added to this repository that refers to the last commit that still has the vim browse patch: - https://github.com/bakkeby/st-flexipatch/tree/VIM_BROWSE_PATCH
26 lines
537 B
C
26 lines
537 B
C
/* Patches */
|
|
#if COPYURL_PATCH || COPYURL_HIGHLIGHT_SELECTED_URLS_PATCH
|
|
#include "copyurl.c"
|
|
#endif
|
|
#if EXTERNALPIPE_PATCH
|
|
#include "externalpipe.c"
|
|
#endif
|
|
#if ISO14755_PATCH
|
|
#include "iso14755.c"
|
|
#endif
|
|
#if KEYBOARDSELECT_PATCH
|
|
#include "keyboardselect_st.c"
|
|
#endif
|
|
#if RIGHTCLICKTOPLUMB_PATCH
|
|
#include "rightclicktoplumb_st.c"
|
|
#endif
|
|
#if NEWTERM_PATCH
|
|
#include "newterm.c"
|
|
#endif
|
|
#if SCROLLBACK_PATCH || SCROLLBACK_MOUSE_PATCH || SCROLLBACK_MOUSE_ALTSCREEN_PATCH
|
|
#include "scrollback.c"
|
|
#endif
|
|
#if SYNC_PATCH
|
|
#include "sync.c"
|
|
#endif
|