mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 14:05:48 +02:00
dc169b1971
This patch is simpler than, and superior to, the TSV patch and as such takes precedence if both are combined. Also addressed some compatibility issues and compilation errors.
38 lines
698 B
C
38 lines
698 B
C
#if CENTER_PATCH
|
|
#include "center.c"
|
|
#endif
|
|
#if FUZZYHIGHLIGHT_PATCH
|
|
#include "fuzzyhighlight.c"
|
|
#elif HIGHLIGHT_PATCH
|
|
#include "highlight.c"
|
|
#endif
|
|
#if FUZZYMATCH_PATCH
|
|
#include "fuzzymatch.c"
|
|
#endif
|
|
#if FZFEXPECT_PATCH
|
|
#include "fzfexpect.c"
|
|
#endif
|
|
#if HIGHPRIORITY_PATCH
|
|
#include "highpriority.c"
|
|
#endif
|
|
#if DYNAMIC_OPTIONS_PATCH
|
|
#include "dynamicoptions.c"
|
|
#endif
|
|
#if MULTI_SELECTION_PATCH
|
|
#include "multiselect.c"
|
|
#endif
|
|
#if MOUSE_SUPPORT_PATCH
|
|
#include "mousesupport.c"
|
|
#endif
|
|
#if NAVHISTORY_PATCH
|
|
#include "navhistory.c"
|
|
#endif
|
|
#if NON_BLOCKING_STDIN_PATCH
|
|
#include "nonblockingstdin.c"
|
|
#endif
|
|
#if NUMBERS_PATCH
|
|
#include "numbers.c"
|
|
#endif
|
|
#if XRESOURCES_PATCH
|
|
#include "xresources.c"
|
|
#endif |