Jacob Carpenter
Jacob Carpenter
This still appears to be an issue in CM-7.2.0-RC0-IHO-KANG (I'm using the MiRaGe 12012011 build). Can I vote this issue up somehow?
> And the issue is about scenario 2, isn't it? Correct. #187 is talking about the word-wrap column. If you look closely at the first screenshot in that issue, you'll...
Hm. It seems like a heavily alliterated haystack could easily defeat that approach, but maybe I'm not understanding the proposal. "Another Awesome Alliteration" "All Apples Are Amazing" "An Apathetic Alligator"...
> i'm pretty sure you can use the info struct to skip any matches that did not start at index 0, ... Totally; that's what I'm doing on the last...
Here's my current definition of `multiFilter`; functional, but likely somewhat suboptimal: ```ts function multiFilter(haystack: string[], needles: string[]) { return [ ...new Set(needles.flatMap((needle) => uf.filter(haystack, needle)!)), ].toSorted((a, z) => a -...
That's a clever-looking solution!