From 196c1e90600f98772dab578cbb4dd927b2526f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=81=87=E5=8F=91?= Date: Sun, 28 Jun 2026 13:49:42 +0800 Subject: [PATCH] fix root help usage contrast --- internal/app/root_help.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/app/root_help.go b/internal/app/root_help.go index 552142bc..25d1e0ae 100644 --- a/internal/app/root_help.go +++ b/internal/app/root_help.go @@ -71,9 +71,9 @@ func renderRootHelp(root *cobra.Command) { } _, _ = fmt.Fprintln(w, tui.Section("Usage:")) - _, _ = fmt.Fprintf(w, " %s %s\n", tui.Bullet(), tui.White("dws [command] [flags]")) + _, _ = fmt.Fprintf(w, " %s dws [command] [flags]\n", tui.Bullet()) if len(utilities) > 0 { - _, _ = fmt.Fprintf(w, " %s %s\n", tui.Bullet(), tui.White("dws [flags]")) + _, _ = fmt.Fprintf(w, " %s dws [flags]\n", tui.Bullet()) } _, _ = fmt.Fprintln(w) if len(utilities) > 0 {