Updated Custom Commands Compendium (markdown)

Jesse Duffield 2021-04-01 20:37:56 +11:00
parent 697b7d76c9
commit d2d538a4c2

@ -78,9 +78,20 @@ customCommands:
```yml
customCommands:
- key: "<c-p>"
command: "git remote prune {{.SelectedRemote.Name}}"
context: "remotes"
loadingText: "Pruning..."
description: "prune deleted remote branches"
- key: "<c-p>"
command: "git remote prune {{.SelectedRemote.Name}}"
context: "remotes"
loadingText: "Pruning..."
description: "prune deleted remote branches"
```
## committing via Commitizen (git cz)
```yml
customCommands:
- key: "C"
command: "git cz"
context: "files"
loadingText: "opening commitizen commit tool"
subprocess: true
```