modules/commands: allow creation of user commands (#366)

This commit is contained in:
Pedro Alves 2023-05-23 13:30:30 +01:00 committed by GitHub
parent c7cc1167b9
commit 74bd7ee77e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{
example = {
userCommands = {
"W" = {
command = ":w<CR>";
desc = "Write file";
};
};
};
}