Dimitri Sabadie
Dimitri Sabadie
Hm, yeah, I have something done like that in `swiper.kak`, so I will try to reuse the same logic there then.
Yes, I made it unicode-aware. I think the problem with `
Yep, I thought about that. It could be part of a next release, indeed. Currently, what the binary does is simply taking your selections, and filtering them (by saving setting...
I’m following up on this as I want to benefit from the effort there (context [here](https://todo.sr.ht/~hadronized/kak-tree-sitter-features/7)).
I guess I’m going to start migrating KTS now!
Oh yeah, it’s very likely because I changed name. Also, I’m working on a new version of the library, but I’ve been delaying a bit working on it so the...
> Basically, you rarely want to just alias HttpService to Service Rarely? How do you define that? The syntax you suggest seems a bit complex to me and non-intuitive. I...
I see. Cannot we just use free variables for that? Like, `Service` implies the free variable used in `http::request`?
@pnkfelix I somehow disagree. `Iterator::next` doesn’t consume the iterator. I guess `Iterator::first` should be defined in terms of: ```rust trait Iterator { // … fn first(self) -> Option { self.next()...
> @phaazon why would you want that though? > > IMO adding the following to the documentation of `last` should be enough: > > > Note that you can also...