From 8e92d8ee2bafbe858ede506ff0291f8c0312e9ff Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 18 Sep 2023 02:05:12 -0400 Subject: [PATCH] Add parentheses to tool suggestions --- src/bin/dust.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/dust.rs b/src/bin/dust.rs index b727502..a94d623 100644 --- a/src/bin/dust.rs +++ b/src/bin/dust.rs @@ -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(),