-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[main] recommended setup for swap doesn't work #624
Comments
EDIT: this might be an issue with lazy loading, since I was defining the keys via lazy.nvim's keys property 🤔 |
I see the same issue. return {
'nvim-treesitter/nvim-treesitter-textobjects',
branch = 'main',
opts = {
select = {
lookahead = true,
},
lsp_interop = {
floating_preview_opts = {},
},
move = {
set_jumps = true,
},
},
keys = {
--...
{
']A',
function()
require('nvim-treesitter-textobjects.swap').swap_next(
'@parameter.inner'
)
end,
desc = 'Swap argument',
},
-- ...
},
} |
Mine works with this: return {
{
"nvim-treesitter/nvim-treesitter",
dependencies = {
"nvim-treesitter/nvim-treesitter-textobjects",
},
branch = "master",
lazy = false,
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup {
ensure_installed = {
...
},
auto_install = true,
highlight = {
enable = true,
},
textobjects = {
swap = {
enable = true,
swap_next = {
["<leader>a"] = "@parameter.inner",
},
swap_previous = {
["<leader>A"] = "@parameter.inner",
},
},
},
}
end,
},
} |
we're discussing the main branch (not master) here, which addresses #503. |
Trying to be helpful wasn't helpful 🤦♂️ 😁 sorry I didn't fully read the |
Just noticed this issue, I should fixed it while refactoring. Could you please try it again? |
Hey! With the latest commit from main, the swapping is working as intended. Do notice the README still contains the typo and where it reads nvim-treesitter-textobjects/README.md Line 96 in 35ef33c
It should be require("nvim-treesitter-textobjects.swap").swap_previous "@parameter.inner" |
Thanks, feel free to report issues on We may fully switch to |
The typo on README will be fixed in eb24d0c |
Your changes have resolved this issue for me. Thank you. |
Describe the bug
The recommended setup for swapping text objects on main is:
But these keymaps don't work: nothing is swapped, and no error is thrown. Based on the setup for default branch, I think there's a typo and it should be
However, these keymaps also don't work.
To Reproduce
Steps to reproduce the behavior:
<leader>a
on an argumentExpected behavior
Arguments should be swapped
Output of
:checkhealth nvim-treesitter
==============================================================================
nvim-treesitter: require("nvim-treesitter.health").check()
Installation ~
tree-sitter
executable not found (parser generator, only needed for :TSInstallFromGrammar, not required for :TSInstall)node
found v20.13.1 (only needed for :TSInstallFromGrammar)git
executable found.cc
executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }Version: cc (GCC) 14.1.1 20240522
OS Info:
{
machine = "x86_64",
release = "6.9.1-arch1-2",
sysname = "Linux",
version = "#1 SMP PREEMPT_DYNAMIC Wed, 22 May 2024 13:47:07 +0000"
} ~
Parser/Features H L F I J
Legend: H[ighlight], L[ocals], F[olds], I[ndents], In[j]ections
+) multiple parsers found, only one will be used
x) errors found in the query, try to run :TSUpdate {lang} ~
Output of
nvim --version
The text was updated successfully, but these errors were encountered: