A blank line then a dim trailing note.
(msg: &str)
| 42 | |
| 43 | /// A blank line then a dim trailing note. |
| 44 | pub 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`. |
| 54 | pub fn scaffolded(dir: &str, items: &[&str], next: &str) { |
no test coverage detected