Andrey Listopadov
Andrey Listopadov
kaktree doesn't require it, and doesn't use it. It seems like a typo in readme.
@AndreiSva I've fixed the typo :smile:. Are there any actual errors on BSD or busybox systems?
hmm `-b` can be worked around, I guess non-graphic characters are rare in files, though this needs more testing.
Alternatively we could gather the directory list with Perl, but this would require some reimplementation of the `build_tree` subroutine
Hi, sorry for delay. Somehow notifications did not came at all. I don't use Kitty, and AFAIK it requires some configuration to manipulate splits, can you add a minimal config...
Should be easy to fix by adding `gt` to the function that changes root
I don't think it's possible. AFAIK replace mode isn't actually a mode? Kakoune seems to read a character directly from terminal, so no remapping is possible here, again, AFAIK, but...
You can destructure a sequence with Fennel's destructuring, since sequences can be indexed, and also define a `__fennelrest` metamethod to avoid realizing the tail. Like so: ``` fennel (let [[a...
Additionally, I'm going to use this library in [cljlib](https://github.com/andreyorst/fennel-cljlib) (eventually) to provide all `seq` related features via functions from this library. Cljlib has a more broader scope and thus includes...
yes, `accumulate` is a bit hard to compose with the rest of the library, as it's not a function you could thread to or compose with comp. Adding reduce can...