mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 12:55:47 +02:00
fix bug where searching through view got stuck if you went over the upper bound
This commit is contained in:
parent
b6cc1c9492
commit
952c62df37
2 changed files with 5 additions and 5 deletions
2
vendor/github.com/jesseduffield/gocui/view.go
generated
vendored
2
vendor/github.com/jesseduffield/gocui/view.go
generated
vendored
|
@ -170,7 +170,7 @@ func (v *View) gotoNextMatch() error {
|
|||
if len(v.searcher.searchPositions) == 0 {
|
||||
return nil
|
||||
}
|
||||
if v.searcher.currentSearchIndex == len(v.searcher.searchPositions)-1 {
|
||||
if v.searcher.currentSearchIndex >= len(v.searcher.searchPositions)-1 {
|
||||
v.searcher.currentSearchIndex = 0
|
||||
} else {
|
||||
v.searcher.currentSearchIndex++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue