1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/abolish.lua

14 lines
208 B
Lua
Raw Normal View History

2022-10-09 03:28:51 +02:00
local M = {}
function M.abolish(from, to)
vim.cmd(":Abolish " .. from .. " " .. to)
end
function M.abolishMany(many)
for _, entry in pairs(many) do
M.abolish(entry[1], entry[2])
end
end
return M