Fix panic trying to go to next of 0 matches (#13233)

Release Notes:

- Fixed a panic when going to next search result when there are none
This commit is contained in:
Conrad Irwin 2024-06-18 14:46:33 -06:00 committed by GitHub
parent 99e4b3a4cf
commit 5ff7c893be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -775,6 +775,7 @@ impl BufferSearchBar {
if let Some(matches) = self
.searchable_items_with_matches
.get(&searchable_item.downgrade())
.filter(|matches| !matches.is_empty())
{
let new_match_index = searchable_item
.match_index_for_direction(matches, index, direction, count, cx);