Ada
Ada
Okay, thanks! ^_^
> > From what I understand, this issue is about allowing arbitrary characters to work as pairs. For example `mik` in `k__k` would select the same as `mi"` in `"__"`...
> From what I understand, this issue is about allowing arbitrary characters to work as pairs. For example `mik` in `k__k` would select the same as `mi"` in `"__"` With...
@pascalkuthe To understand and replicate the limitation I'm talking about, try the following: Paste the following into `test.nix`: ```nix { rawConfig = '' Some code some other code oh, also...
@pascalkuthe > I don't think we should introduce an extra text object for string literals for every language. That's a lot of effort uo maintain while being a bit nieche....
I'm picking through the code, and I _think_ @pascalkuthe primary actual concern is implementation complexity? Which, if so, is fair enough. The current implementation of `select_textobject` and associated wrapper functions,...
I do not understand why you think it requires a textobject query for _every single language_. A generalized approach could relatively easily be language agnostic. If the issue is that...
got this same issue when trying to package probe-rs: ```nix { inputs = { flake-utils.url = "github:numtide/flake-utils"; naersk.url = "github:nix-community/naersk"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; probe-rs = { url = "github:probe-rs/probe-rs"; flake...
I would love this feature! And I agree with @BatmanAoD -- platform-specific support for a feature like this is better than no support! :)
if this gets implemented, I'd def be happy to set up a Python API for it. Ideally it'd be something platform independent, so that it doesn't matter if someone is...