nix-community.nixvim/tests/test-sources/modules/commands.nix

23 lines
397 B
Nix
Raw Normal View History

{
example = {
userCommands = {
"W" = {
command = ":w<CR>";
desc = "Write file";
2024-05-21 12:37:43 +01:00
nargs = 0;
};
"Z" = {
command = ":echo fooo<CR>";
};
"InsertHere" = {
command.__raw = ''
function(opts)
vim.api.nvim_put({opts.args}, 'c', true, true)
end
'';
nargs = 1;
};
};
};
}