nvim-treesitter-textobjects icon indicating copy to clipboard operation
nvim-treesitter-textobjects copied to clipboard

Results 147 nvim-treesitter-textobjects issues
Sort by recently updated
recently updated
newest added

I think [this table]( https://github.com/nvim-treesitter/nvim-treesitter-textobjects#built-in-textobjects) about which features work for which languages is hard to extract information from. I think it would be more helpful to show a list, for...

enhancement

**Is your feature request related to a problem? Please describe.** Currently, python queries cover only standard assignments like `x = 1`. Augmented assignments like `x += 1` could be supported...

enhancement

This is my best attempt to further improve julia queries: * works for empty structures * works for `;` argument separation * adds `@assignment.*` queries Queries are not perfect, there...

Mostly a minor renaming as node names changed in https://github.com/tact-lang/tree-sitter-tact

Add functions with `when` guard clauses and functions without parameters with and without guard clauses Fixes #640

**Describe the bug** Functions with guard clauses with `when` or functions without params are registered as @function text objects **To Reproduce** Steps to reproduce the behavior: 1. Using this file...

bug

**Describe the bug** Swapping `@function.outer` in Python doesn't work when inside a decorated function. Take the example: ```python def test(): print("This is a test") @some_decorator def test2(): print("This is a...

bug

**Describe the bug** Opening a buffer for any Rust file with `textobject.select.enable = true` option is very slow. The time difference when opening an empty `foo.rs` file is very noticeable...

bug

~~Only added a few of the possible options.~~ ~~I have hopes to add more in the future.~~ I added a fairly comprehensive list for VHDL (tree-sitter-vhdl). This has sped up...

Extends support for recognizing class.outer for the following types: - classes with empty declarations ```cs public class MyClass {} ``` - structs with empty declarations ```cs public struct MyStruct {}...