Adding note about flexipatch-finalizer

This commit is contained in:
bakkeby 2019-10-16 08:27:00 +02:00
parent 9587530685
commit 687e10f42c
2 changed files with 6 additions and 4 deletions

View File

@ -5,12 +5,18 @@ For example to include the `border` patch then you would only need to flip this
#define BORDER_PATCH 1 #define BORDER_PATCH 1
``` ```
Once you have found out what works for you and what doesn't then you should be in a better position to choose patches should you want to start patching from scratch.
Alternatively if you have found the patches you want, but don't want the rest of the flexipatch entanglement on your plate then you may want to have a look at [flexipatch-finalizer](https://github.com/bakkeby/flexipatch-finalizer); a custom pre-processor tool that removes all the unused flexipatch code leaving you with a build that contains the patches you selected.
Refer to [https://tools.suckless.org/dmenu/](https://tools.suckless.org/dmenu/) for details on dmenu, how to install it and how it works. Refer to [https://tools.suckless.org/dmenu/](https://tools.suckless.org/dmenu/) for details on dmenu, how to install it and how it works.
--- ---
### Changelog: ### Changelog:
2019-10-16 - Introduced [flexipatch-finalizer](https://github.com/bakkeby/flexipatch-finalizer)
2019-09-18 - Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches 2019-09-18 - Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches
### Patches included: ### Patches included:

View File

@ -1,19 +1,15 @@
#if CENTER_PATCH #if CENTER_PATCH
#include "center.c" #include "center.c"
#endif #endif
#if FUZZYMATCH_PATCH #if FUZZYMATCH_PATCH
#include "fuzzymatch.c" #include "fuzzymatch.c"
#endif #endif
#if MOUSE_SUPPORT_PATCH #if MOUSE_SUPPORT_PATCH
#include "mousesupport.c" #include "mousesupport.c"
#endif #endif
#if NAVHISTORY_PATCH #if NAVHISTORY_PATCH
#include "navhistory.c" #include "navhistory.c"
#endif #endif
#if NON_BLOCKING_STDIN_PATCH #if NON_BLOCKING_STDIN_PATCH
#include "nonblockingstdin.c" #include "nonblockingstdin.c"
#endif #endif