MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / note

Function note

cli/src/ui.rs:44–51  ·  view source on GitHub ↗

A blank line then a dim trailing note.

(msg: &str)

Source from the content-addressed store, hash-verified

42
43/// A blank line then a dim trailing note.
44pub fn note(msg: &str) {
45 println!();
46 if plain() {
47 println!(" {msg}");
48 } else {
49 println!(" {}", msg.dimmed());
50 }
51}
52
53/// The created-files tree printed by `edge init`.
54pub fn scaffolded(dir: &str, items: &[&str], next: &str) {

Callers 3

addFunction · 0.85
removeFunction · 0.85
scaffoldedFunction · 0.85

Calls 1

plainFunction · 0.85

Tested by

no test coverage detected