mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 12:05:48 +00:00
Fuzzymatch integration adding case insensitive support for fuzzyhighlight patch
This commit is contained in:
parent
0993a2931a
commit
a04fa75d7f
@ -12,7 +12,12 @@ drawhighlights(struct item *item, int x, int y, int maxw)
|
|||||||
? SchemeSelHighlight
|
? SchemeSelHighlight
|
||||||
: SchemeNormHighlight]);
|
: SchemeNormHighlight]);
|
||||||
for (i = 0, highlight = item->text; *highlight && text[i];) {
|
for (i = 0, highlight = item->text; *highlight && text[i];) {
|
||||||
if (*highlight == text[i]) {
|
#if FUZZYMATCH_PATCH
|
||||||
|
if (!fstrncmp(&(*highlight), &text[i], 1))
|
||||||
|
#else
|
||||||
|
if (*highlight == text[i])
|
||||||
|
#endif // FUZZYMATCH_PATCH
|
||||||
|
{
|
||||||
/* get indentation */
|
/* get indentation */
|
||||||
c = *highlight;
|
c = *highlight;
|
||||||
*highlight = '\0';
|
*highlight = '\0';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user