akinsho / iswap.nvim

Interactively select and swap function arguments, list elements, and more. Powered by tree-sitter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iswap.nvim

Interactively select and swap: function arguments, list elements, function parameters, and more. Powered by tree-sitter.

iswap demo

installation

For vim-plug:

Plug 'mizlan/iswap.nvim'

usage

Run the command :ISwap when your cursor is in a location that is suitable for swapping around things. These include lists/arrays, function arguments, and parameters in function definitions. Then, hit two keys corresponding to the items you wish to be swapped. After both keys are hit, the text should immediately swap in the buffer. See the gif above for example usage.

configuration

In your init.lua:

require('iswap').setup{
  -- The keys that will be used as a selection, in order
  -- ('asdfghjklqwertyuiopzxcvbnm' by default)
  keys = 'qwertyuiop',

  -- Grey out the rest of the text when making a selection
  -- (enabled by default)
  grey = 'disable',

  -- Highlight group for the sniping value (asdf etc.)
  -- default 'Search'
  hl_snipe = 'ErrorMsg',

  -- Highlight group for the visual selection of terms
  -- default 'Visual'
  hl_selection = 'WarningMsg',

  -- Highlight group for the greyed background
  -- default 'Comment'
  hl_grey = 'LineNr'
}

inspired by hop.nvim and nvim-treesitter-textobjects

About

Interactively select and swap function arguments, list elements, and more. Powered by tree-sitter.

License:Apache License 2.0


Languages

Language:Lua 86.2%Language:Scheme 11.0%Language:Vim Script 2.8%