Use a fancier angle bracket in the breadcrumbs

This commit is contained in:
Max Brunsfeld 2022-03-29 21:16:12 -07:00
parent a11665ecc7
commit fb46615c9f

View File

@ -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(),