Add a basic command system instead of refering to actions directly from the config
This commit is contained in:
@ -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
|
||||
},
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user