Abin Simon
Abin Simon
On a related note, I tried [grouping sibling nodes](https://tree-sitter.github.io/tree-sitter/using-parsers#grouping-sibling-nodes) but I'm not sure if I am doing it right. `@parameter.outer` is just matching the comma. This is the same in...
@theHamsta I remember you mentioning that `tree-sittter` does not have an obvious way to select multiple items. I just saw [this issue](https://github.com/nvim-treesitter/nvim-treesitter-textobjects/issues/22) on on the nvim side and was wondering...
> If the text-object library imposes this constraint, the `make-range!` predicate becomes redundant. That's the improvement I was suggesting `nvim-treesitter-textobjects ` can make. Ahh, this makes sense.
@theHamsta How exactly is `@function.outer.start` used [here](https://github.com/nvim-treesitter/nvim-treesitter-textobjects/blob/7c6b5fe0926f52854f193d058cd98d2e74c3d483/queries/python/textobjects.scm#L5). Is it merged with `@function.outer` in lua side? I was not able to find anything specific from a quick scan in the codebase.
The original issue of `make-range` has been taken care of in downstream (https://github.com/meain/evil-textobj-tree-sitter/pull/38) . Ended up rewriting the queries to have `._start` and `._end` and merging it in elisp. We...
For anyone interested, there is [ts-fold](https://github.com/jcs090218/ts-fold) which does folding based on ts grammar.
Hey @bofh69 , I personally think we should keep the current behaviour as it is similar to the behaviour of `ls`.
@ben2talk Permission denied is probably a different issues: https://github.com/Peltoche/lsd/issues/79
There is some subtle differences in the date format specifiers in the lib (`chrono`) that we are using to do that. In this case, it would be `%f` instead of...
Ooh, this looks like a bug. We are doing an extra validation check when we take input [here](https://github.com/Peltoche/lsd/blob/2ea97d274a58e5c880713ecba9ca97f20430685c/src/app.rs#L294). Looks like right now it is only capable of parsing a subset...