nix-community.nixvim/tests/test-sources/modules/commands.nix
2024-05-21 14:27:49 +02:00

14 lines
209 B
Nix

{
example = {
userCommands = {
"W" = {
command = ":w<CR>";
desc = "Write file";
nargs = 0;
};
"Z" = {
command = ":echo fooo<CR>";
};
};
};
}