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

wrapper functions which can be used to define count prefixed, dot repeatable keymaps #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions lua/iswap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -331,4 +331,30 @@ function M.iswap_with(direction, config)
vim.cmd([[silent! call repeat#set("\<Plug>ISwapWith", -1)]])
end

-- The following are convenience wrapper functions which can be used in dot
-- repeatable keymaps. Keymaps are also capable to be prefixed with [count]
function M.iswap_with_left()
for _ = 1, vim.v.count1 do
require('iswap').iswap_with('left')
end
end

function M.iswap_with_right()
for _ = 1, vim.v.count1 do
require('iswap').iswap_with('right')
end
end

function M.iswap_node_with_left()
for _ = 1, vim.v.count1 do
require('iswap').iswap_node_with('left')
end
end

function M.iswap_node_with_right()
for _ = 1, vim.v.count1 do
require('iswap').iswap_node_with('right')
end
end

return M