index.md (610B)
1 fuzzyhighlight 2 ============== 3 4 Description 5 ----------- 6 This patch make it so that fuzzy matches gets highlighted and is therefore 7 meant to be used together with the patch fuzzymatch. 8 9 To make this patch fully integrated with fuzzymatch and support 'case 10 insensitive' features the following line must be changed: 11 12 if (*highlight == text[i]) { 13 14 into: 15 16 if (!fstrncmp(&(*highlight), &text[i], 1)) { 17 18 [](fuzzyhighlight.png) 19 20 Download 21 -------- 22 * [dmenu-fuzzyhighlight-4.9.diff](dmenu-fuzzyhighlight-4.9.diff) 23 24 Authors 25 ------- 26 * Chris Noxz - <chris@noxz.tech>