mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
support left arrow to go back grom commit details (closes #418)
This commit is contained in:
parent
546c7f3072
commit
6482c81382
2 changed files with 3 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## Unreleased
|
||||
|
||||
### Added
|
||||
- support smoother left/right toggle for commit details ([#418](https://github.com/extrawurst/gitui/issues/418))
|
||||
- support *force push* command [[@WizardOhio24](https://github.com/WizardOhio24)] ([#274](https://github.com/extrawurst/gitui/issues/274))
|
||||
- show used char count in input texts ([#466](https://github.com/extrawurst/gitui/issues/466))
|
||||
|
||||
|
|
|
|||
|
|
@ -122,6 +122,8 @@ impl Component for InspectCommitComponent {
|
|||
{
|
||||
self.details.focus(true);
|
||||
self.diff.focus(false);
|
||||
} else if e == self.key_config.focus_left {
|
||||
self.hide();
|
||||
}
|
||||
|
||||
// stop key event propagation
|
||||
|
|
|
|||
Loading…
Reference in a new issue