MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / print_hint

Function print_hint

atomic-cli/src/output/mod.rs:157–159  ·  view source on GitHub ↗

Print a hint/suggestion message to stdout. The message is formatted in dim style, typically used for guiding users on what to do next. # Arguments `message` - The hint message to print # Example ```rust,ignore print_hint("Run 'atomic add ' to track new files"); ```

(message: &str)

Source from the content-addressed store, hash-verified

155/// print_hint("Run 'atomic add <file>' to track new files");
156/// ```
157pub fn print_hint(message: &str) {
158 println!("{}", hint(message));
159}
160
161// Structured Output Helpers
162

Callers 15

mainFunction · 0.85
runMethod · 0.85
run_applyMethod · 0.85
run_showMethod · 0.85
runMethod · 0.85
print_resultsMethod · 0.85
runMethod · 0.85
runMethod · 0.85
runMethod · 0.85
print_long_formatMethod · 0.85
runMethod · 0.85
create_ignore_fileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected