Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
cli: change link direction symbols
Merged fintohaps opened 10 months ago

The symbols used for inbound and outbound are part of the Supplementary Multilingual Plane (or Plane 1). This set of symbols are not as well supported by font sets, as discovered by many reports of the characters missing.

There are two other arrow characters: south east and north east that serve the same style and are part of the Basic Multilingual Plane (or Plane 0). This set of characters is more widely supported.

1 file changed +2 -2 84427a56 76e00a34
modified crates/radicle-cli/src/commands/node/control.rs
@@ -394,9 +394,9 @@ fn link_direction_label() -> term::Paint<String> {
}

fn link_direction_inbound() -> term::Paint<String> {
-
    term::format::yellow("🡦".to_string())
+
    term::format::yellow("↘".to_string())
}

fn link_direction_outbound() -> term::Paint<String> {
-
    term::format::dim("🡥".to_string())
+
    term::format::dim("↗".to_string())
}