fix: File selector should jump back and highlight unstaged files (#2499)

Co-authored-by: extrawurst <mail@rusticorn.com>
This commit is contained in:
tommady 2025-01-30 00:30:20 +08:00 committed by GitHub
parent 232ad89a4d
commit 50c6562492
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Changed
* After commit: jump back to unstaged area [[@tommady](https://github.com/tommady)] ([#2476](https://github.com/extrawurst/gitui/issues/2476))
## [0.27.0] - 2024-01-14
**new: manage remotes**

View file

@ -218,6 +218,7 @@ impl CommitPopup {
self.hide();
self.queue.push(InternalEvent::Update(NeedsUpdate::ALL));
self.queue.push(InternalEvent::StatusLastFileMoved);
self.input.clear();
}