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

13 lines
190 B
Nix

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