From 615cb24ba6b0045b8eb3ece8d78fb5ce6dfdea59 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 31 May 2021 03:29:29 -0700 Subject: [PATCH] shell: use tab print style for completion --- weed/shell/shell_liner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/weed/shell/shell_liner.go b/weed/shell/shell_liner.go index 1dd611ca5..38b74bc54 100644 --- a/weed/shell/shell_liner.go +++ b/weed/shell/shell_liner.go @@ -31,6 +31,7 @@ func RunShell(options ShellOptions) { }) line.SetCtrlCAborts(true) + line.SetTabCompletionStyle(liner.TabPrints) setCompletionHandler() loadHistory()