We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82216d5 commit b3f2aecCopy full SHA for b3f2aec
1 file changed
crates/forge_app/src/fmt/fmt_input.rs
@@ -64,11 +64,11 @@ impl FormatContent for ToolCatalog {
64
let pairs: Vec<_> = input
65
.queries
66
.iter()
67
- .map(|sq| format!("{} [{}]", sq.query, sq.use_case))
+ .map(|item| item.query.as_str())
68
.collect();
69
Some(
70
- TitleFormat::debug("Codebase Search:")
71
- .sub_title(pairs.join(", "))
+ TitleFormat::debug("Codebase Search")
+ .sub_title(format!("[{}]", pairs.join(" · ")))
72
.into(),
73
)
74
}
0 commit comments