Skip to content
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

Closed
igorlfs opened this issue May 26, 2024 · 10 comments
Closed

[main] recommended setup for swap doesn't work #624

igorlfs opened this issue May 26, 2024 · 10 comments
Labels
bug Something isn't working

Comments

@igorlfs
Copy link

igorlfs commented May 26, 2024

Describe the bug
The recommended setup for swapping text objects on main is:

-- keymaps
local swap = require("nvim-treesitter-textobjects.swap")
vim.keymap.set("n", "<leader>a", swap.swap_next("@parameter.inner"))
vim.keymap.set("n", "<leader>A", swap.swap_next("@parameter.outer"))

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

vim.keymap.set("n", "<leader>a", swap.swap_next("@parameter.inner"))
vim.keymap.set("n", "<leader>A", swap.swap_previous("@parameter.inner"))

However, these keymaps also don't work.

To Reproduce
Steps to reproduce the behavior:

  1. Install the plugin and enable the recommended for swap
  2. <leader>a on an argument

Expected behavior
Arguments should be swapped

Output of :checkhealth nvim-treesitter

==============================================================================
nvim-treesitter: require("nvim-treesitter.health").check()

Installation ~

  • WARNING tree-sitter executable not found (parser generator, only needed for :TSInstallFromGrammar, not required for :TSInstall)
  • OK node found v20.13.1 (only needed for :TSInstallFromGrammar)
  • OK git executable found.
  • OK cc executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
    Version: cc (GCC) 14.1.1 20240522
  • OK Neovim was compiled with tree-sitter runtime ABI version 14 (required >=13). Parsers must be compatible with runtime ABI.

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

  • bash ✓ ✓ ✓ . ✓
  • bibtex ✓ . ✓ ✓ .
  • c ✓ ✓ ✓ ✓ ✓
  • comment ✓ . . . .
  • cpp ✓ ✓ ✓ ✓ ✓
  • css ✓ . ✓ ✓ ✓
  • diff ✓ . . . .
  • gdscript ✓ ✓ ✓ ✓ ✓
  • gitcommit ✓ . . . ✓
  • gitignore ✓ . . . .
  • html ✓ ✓ ✓ ✓ ✓
  • hyprlang ✓ . ✓ ✓ ✓
  • java ✓ ✓ ✓ ✓ ✓
  • javascript ✓ ✓ ✓ ✓ ✓
  • jsdoc ✓ . . . .
  • json ✓ ✓ ✓ ✓ .
  • jsonc ✓ ✓ ✓ ✓ ✓
  • lua ✓ ✓ ✓ ✓ ✓
  • make ✓ . ✓ . ✓
  • markdown ✓ . ✓ ✓ ✓
  • markdown_inline ✓ . . . ✓
  • python ✓ ✓ ✓ ✓ ✓
  • query ✓ ✓ ✓ ✓ ✓
  • regex ✓ . . . .
  • requirements ✓ . . . ✓
  • rust ✓ ✓ ✓ ✓ ✓
  • scss ✓ . ✓ ✓ .
  • sql ✓ . . ✓ ✓
  • svelte ✓ ✓ ✓ ✓ ✓
  • toml ✓ ✓ ✓ ✓ ✓
  • tsx ✓ ✓ ✓ ✓ ✓
  • typescript ✓ ✓ ✓ ✓ ✓
  • typst ✓ . ✓ ✓ ✓
  • vim ✓ ✓ ✓ . ✓
  • vimdoc ✓ . . . ✓
  • yaml ✓ ✓ ✓ ✓ ✓
  • zathurarc ✓ . . . ✓

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

NVIM v0.10.0
Build type: Release
LuaJIT 2.1.1713773202
@igorlfs igorlfs added the bug Something isn't working label May 26, 2024
@igorlfs
Copy link
Author

igorlfs commented May 26, 2024

EDIT: this might be an issue with lazy loading, since I was defining the keys via lazy.nvim's keys property 🤔

@thetic
Copy link

thetic commented Jun 1, 2024

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',
        },
        -- ...
    },
}

@DavidGamba
Copy link

DavidGamba commented Jun 12, 2024

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,
  },
}

@thetic
Copy link

thetic commented Jun 12, 2024

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.

@DavidGamba
Copy link

Trying to be helpful wasn't helpful 🤦‍♂️ 😁 sorry I didn't fully read the [main] part.

@ofseed
Copy link

ofseed commented Aug 31, 2024

Just noticed this issue, I should fixed it while refactoring. Could you please try it again?

@igorlfs
Copy link
Author

igorlfs commented Sep 1, 2024

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

require("nvim-treesitter-textobjects.swap").swap_next "@parameter.outer"

It should be

require("nvim-treesitter-textobjects.swap").swap_previous "@parameter.inner"

@ofseed
Copy link

ofseed commented Sep 1, 2024

Thanks, feel free to report issues on main, there are a lot of reactors that have been done, so there may be some regressions.

We may fully switch to main recently, more testers are needed.

@ofseed
Copy link

ofseed commented Sep 1, 2024

The typo on README will be fixed in eb24d0c

@thetic
Copy link

thetic commented Sep 2, 2024

Just noticed this issue, I should fixed it while refactoring. Could you please try it again?

Your changes have resolved this issue for me. Thank you.

@igorlfs igorlfs closed this as completed Sep 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants