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
38 lines
648 B
C
38 lines
648 B
C
/* Patches */
|
|
#if ALPHA_PATCH
|
|
#include "alpha.h"
|
|
#endif
|
|
#if BACKGROUND_IMAGE_PATCH
|
|
#include "background_image_x.h"
|
|
#endif
|
|
#if BOXDRAW_PATCH
|
|
#include "boxdraw.h"
|
|
#endif
|
|
#if OPENCOPIED_PATCH
|
|
#include "opencopied.h"
|
|
#endif
|
|
#if FONT2_PATCH
|
|
#include "font2.h"
|
|
#endif
|
|
#if FULLSCREEN_PATCH
|
|
#include "fullscreen_x.h"
|
|
#endif
|
|
#if INVERT_PATCH
|
|
#include "invert.h"
|
|
#endif
|
|
#if KEYBOARDSELECT_PATCH
|
|
#include "keyboardselect_x.h"
|
|
#endif
|
|
#if NETWMICON_PATCH
|
|
#include "netwmicon.h"
|
|
#endif
|
|
#if RIGHTCLICKTOPLUMB_PATCH
|
|
#include "rightclicktoplumb_x.h"
|
|
#endif
|
|
#if ST_EMBEDDER_PATCH
|
|
#include "st_embedder_x.h"
|
|
#endif
|
|
#if XRESOURCES_PATCH
|
|
#include "xresources.h"
|
|
#endif
|