nvim-treesitter-textobjects
nvim-treesitter-textobjects copied to clipboard
**Is your feature request related to a problem? Please describe.** Some select text objects I don't want to map to their own individual keys and would rather just take the...
**Describe the bug** I have updated my `nvim/init.lua` config such that I should be able to use the swapping functionality with `nvim-treesitter-textobjects`, however, when I try using these keybindings, `a`...
While I was editing my config for this very plugin, commenting and uncommenting lines in the config table, I tried to make use of the `@parameter` text objects and noticed...
**Describe the bug** I'm working on a `tsx` file. The first time i press `cif` the function content is deleted and it gets into the insert mode as expected. Now...
**Is your feature request related to a problem? Please describe.** This is something that is not very clear in the documentation. I wanted to create new textobjects for "variables", or...
### Describe the bug when open cpp or zig file will hang a while ### To Reproduce min config ```lua vim.opt.rtp:append('path/to/nvim-treesitter/') vim.opt.rtp:append('path/to/nvim-treesitter-textobjects/') vim.opt.foldmethod = 'expr' vim.opt.foldexpr = 'nvim_treesitter#foldexpr()' require('nvim-treesitter.configs').setup({ highlight...
Hello, I noticed that neither c++ nor rust closures are being captured under function.inner/outer. Is this an intentional design decision? Otherwise I could contribute the missing captures to fill this...
**Describe the bug** Hey! I'm getting an error when opening rust files. ``` Error detected while processing BufReadPost Autocommands for "*": Error executing lua callback: /usr/local/share/nvim/runtime/filetype.lua:24: Error executing lua: /usr/local/share/nvim/runtime/filetype.lua:25:...
[Nvim-treesitter 1.0](https://github.com/nvim-treesitter/nvim-treesitter/issues/4767) (expected later this year) will completely remove the module system in order to significantly reduce complexity. This means that nvim-treesitter-textobjects needs to be refactored into a standalone plugin,...
**Describe the bug** I've mapped repeat motions as described in the readme: ``` -- Optionally, make builtin f, F, t, T also repeatable with ; and , vim.keymap.set({ "n", "x",...