Add tuicr commands

NikolayXHD 2026-09-06 23:39:11 +03:00 committed by stk
parent add2433736
commit 584635394f

@ -555,4 +555,25 @@ customCommands:
- key: message
title: 'Enter the commit title: '
type: input
```
## Code review in terminal via [tuicr](https://github.com/agavra/tuicr)
```yaml
customCommands:
- key: 'R'
command: 'tuicr -w'
context: files
description: review uncommitted changes in tuicr
output: terminal
- key: 'R'
command: 'tuicr -r {{.SelectedCommitRange.From}}^..{{.SelectedCommitRange.To}}'
context: commits
description: review selected commits in tuicr
output: terminal
- key: 'R'
command: 'tuicr -r {{.SelectedCommitRange.From}}^..{{.SelectedCommitRange.To}}'
context: subCommits
description: review selected commits in tuicr
output: terminal
```