Add parentheses to tool suggestions

This commit is contained in:
Jeff 2023-09-18 02:05:12 -04:00
parent dc68f0307f
commit 8e92d8ee2b

View File

@ -67,7 +67,7 @@ impl DustReadline {
tool_hints: TOOL_LIST
.iter()
.map(|tool| ToolHint {
display: tool.info().identifier.to_string(),
display: tool.info().identifier.to_string() + "()",
complete_to: tool.info().identifier.len(),
})
.collect(),