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

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

I am wondering if it is possible to somehow map both @function.outer & @class.outer to 'gp' keymap and peeking each one regarding cursor's position

**Describe the bug** Deleting a scala function using `function.outer` text object in some cases deletes also the next function, while using the same text-object to select code always highlights correctly...

bug

**Describe the bug** plugins have no effect **To Reproduce** system: macos neovim version: 0.8.3 nvim-treesitter version: 4cccb6f nvim-treesitter-textobjects: 380561e **Expected behavior** A clear and concise description of what you expected...

bug

Comes from : What is the text object to select node like nvim-treesitter's original `gnn`? And how to increment/decrement the selected region?

**Describe the bug** When I use `dia` or `daa` (my configured commands to delete inner parameter and outer parameter respectively), after undoing those commands with `u`, I cannot use `ia`...

bug

**Describe the bug** I have this code and with the cursor on the `b` in `abc` I execute the function: ![nvim-parameter-outer-1](https://github.com/nvim-treesitter/nvim-treesitter-textobjects/assets/5836/c62f6a9d-e489-42f0-b89d-3767fd51d77c) This is what is selected: ![nvim-parameter-outer-2](https://github.com/nvim-treesitter/nvim-treesitter-textobjects/assets/5836/3984f4cf-2239-4dbe-b771-bb91cb1cfdf6) **Expected behavior** I...

bug

I'm hoping to write a macro that involves jumping to a second argument of a function call and deleting it. The function arguments will sometimes include nested function calls, sometimes...

bug

**Describe the bug** When I open a `zig` file with this extension enabled it takes 3 seconds on my machine to start it **To Reproduce** I made a minimal config...

bug

**Describe the bug** The `textobjects` don't work properly with `set selection=exclusive`. **To Reproduce** I have setup the following keymaps: ``` textobjects = { select = { enable = true, lookahead...

bug

Is there a way to automatically determine whether the current context is a function or a class, and then set the same shortcut key to jump? There will be problems...