rsplug 0.2.1

A blazingly fast Neovim plugin manager written in Rust
1
2
3
4
5
6
7
8
9
10
11
-- Auto generated by rsplug
for _, cmd in ipairs {<% for cmd in cmds {%>'<%= cmd %>',<%}%>} do
	vim.api.nvim_create_user_command(cmd, function(...)
		require '_rsplug/on_cmd'.cmd_handler(cmd, ...)
	end, {
		nargs = '?', bang = true, bar = true, range = true,
		complete = function(...)
			require '_rsplug/on_cmd'.dummy_complete(cmd, ...)
		end,
	})
end