Use a fancier angle bracket in the breadcrumbs

Max Brunsfeld created

Change summary

crates/breadcrumbs/src/breadcrumbs.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/breadcrumbs/src/breadcrumbs.rs 🔗

@@ -68,7 +68,7 @@ impl View for Breadcrumbs {
             .with_child(Label::new(filename.to_string(), theme.breadcrumbs.text.clone()).boxed())
             .with_children(symbols.into_iter().flat_map(|symbol| {
                 [
-                    Label::new(" > ".to_string(), theme.breadcrumbs.text.clone()).boxed(),
+                    Label::new(" 〉 ".to_string(), theme.breadcrumbs.text.clone()).boxed(),
                     Text::new(symbol.text, theme.breadcrumbs.text.clone())
                         .with_highlights(symbol.highlight_ranges)
                         .boxed(),