Add a basic command system instead of refering to actions directly from the config

This commit is contained in:
2023-10-29 16:49:05 +01:00
parent 6063636d9d
commit 5d77eace77
7 changed files with 116 additions and 13 deletions

View File

@ -1,10 +1,10 @@
{
"keybindings": {
"Home": {
"<q>": "Quit", // Quit the application
"<Ctrl-d>": "Quit", // Another way to quit
"<Ctrl-c>": "Quit", // Yet another way to quit
"<Ctrl-z>": "Suspend" // Suspend the application
"<q>": "/quit", // Quit the application
"<Ctrl-d>": "/quit", // Another way to quit
"<Ctrl-c>": "/quit", // Yet another way to quit
"<Ctrl-z>": "/suspend" // Suspend the application
},
}
}