Rename background_highlights_in_range_for_key to background_highlights_in_range_for

Piotr Osiewicz created

Change summary

crates/editor/src/editor.rs  | 2 +-
crates/editor/src/element.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/editor/src/editor.rs 🔗

@@ -7222,7 +7222,7 @@ impl Editor {
         }
         results
     }
-    pub fn background_highlights_in_range_for_key<T: 'static>(
+    pub fn background_highlights_in_range_for<T: 'static>(
         &self,
         search_range: Range<Anchor>,
         display_snapshot: &DisplaySnapshot,

crates/editor/src/element.rs 🔗

@@ -1087,7 +1087,7 @@ impl EditorElement {
                     }
                 };
                 for (row, _) in &editor
-                    .background_highlights_in_range_for_key::<crate::items::BufferSearchHighlights>(
+                    .background_highlights_in_range_for::<crate::items::BufferSearchHighlights>(
                         start_anchor..end_anchor,
                         &layout.position_map.snapshot,
                         &theme,