randomekek
randomekek
I may also suggest: write rules that match as tightly as possible without consuming the surrounding whitespace. Do not begin or end a rule with `_`, only match whitespace after...
Yeah it might be a bit more complex than warranted. Thanks for taking a look :+1: For implementation, maybe it is possible just to use tabs and set tabstop to...
Yeah I prefer to not chdir because it's a habit from netrw. Easier to patch config than fix muscle memory... obligatory xkcd.
There is a potential backward compatible solution: add explicit keyword parameters in addition to the existing positional parameter: `(mask, *, mask_fn, mask_value)`. So the existing calling convention would remain -...
I just realised that you can just wrap your value in a constant callable like `lambda: mask`, a bit ugly but gets the job done with no changes. ```py #...