Abin Simon
Abin Simon
@sassanh Sorry, my bad. I was cheching fuzzy matching after setting abbrv matching. It works.
@cyann Wow, that actually seems to work.
 I do get this error in the UI, but at least it seems to be working so far. Let me see if it...
Same for me actually. Had to open through shell. I just thought it was blocked due to some security thing, but least it been working fine for me for some...
I spent some time today on this, but was not really able to fully figure out how I should approach this. I don't think my understanding of the `tree-sitter` lib...
Thanks @theHamsta , I did take a look at the implementation in `nvim-treesitter-textobjects`. Unfortunately `elisp-tree-sitter` as of now does not expose anything that we can use to add "directive_handlers" nor...
Thanks @ubolonton , just had a few queries. I was not able to find out where/if we are exposing [`general_predicates`](https://github.com/tree-sitter/tree-sitter/blob/e96ee19901947d8550abbcf425791c2a411c8d97/lib/binding_rust/lib.rs#L105) which I believe would help with figuring out these "unhanded"...
> Do you have a concrete example for this? AFAICT, text objects don't need that generality. They have only inner and outer. I don't really have a concrete example, was...
> Exposing that function isn't difficult. I'm trying to understand how that information would help with the text-object use case. This might be specific to my usecase, but I pretty...
Maybe I am missing something here but the definition of `parameter.outer` is just purely in `make-range`. ``` ((parameters "," @_start . [ (identifier) (tuple) (typed_parameter) (default_parameter) (typed_default_parameter) (dictionary_splat_pattern) (list_splat_pattern) ]...