Documentation: custom commands json
- Dominant language
- Python
- Stars
- 4.7k
- Forks
- 604
- PR merge metrics
- No merged PRs in 30d
Description
Hi,
does documentation how to define custom commands exist and I cannot find or it does not exit? I spend some time searching for it and browsing through the code to find information. I bet I am not the only one.
This would have been enough:
# Custom commands json
## Command list
```
[
{
"description": "List all files",
"cmd": [
"ls",
"-ls"
]
}
]
```
## Command list with submenu
```
[
{
"description": "List all files",
"cmd": [
"ls",
"-ls"
]
},
{
"type": "menu",
"description": "Remote commands",
"items": [
{
"description": "ssh to host",
"cmd": [
"ssh",
"hostname"
]
}
]
}
]
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.