commit 8a6485648211a33b9afb01d461a08fe7a9e24eb2
parent 842971fe5f4ec89e574c1923e9149ed8cb3e4c03
Author: Sean Enck <sean@ttypty.com>
Date: Sat, 19 Jul 2025 07:38:37 -0400
this is a command, not an entry
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/internal/app/help/core.go b/internal/app/help/core.go
@@ -97,7 +97,7 @@ func Usage(verbose bool, exe string) ([]string, error) {
results = append(results, command(commands.List, isFilter, "list entries"))
results = append(results, command(commands.Groups, isFilter, "list groups"))
results = append(results, command(commands.Show, isEntry, "show the entry's value"))
- results = append(results, command(commands.TOTP, isEntry, "display an updating totp generated code"))
+ results = append(results, command(commands.TOTP, "<command>", "display an updating totp generated code"))
results = append(results, subCommand(commands.TOTP, commands.TOTPClip, isEntry, "copy totp code to clipboard"))
results = append(results, subCommand(commands.TOTP, commands.TOTPList, isFilter, "list entries with totp settings"))
results = append(results, subCommand(commands.TOTP, commands.TOTPOnce, isEntry, "display the first generated code"))