lockbox

password manager
Log | Files | Refs | README | LICENSE

commit 840604dc78a10f6e6db85385633113af37785258
parent 90cb4a9e7a17df9cc6c2c382fa01bda7b10019df
Author: Sean Enck <sean@ttypty.com>
Date:   Sat,  7 Jun 2025 16:02:49 -0400

this is really a 'group' and not an entry

Diffstat:
Minternal/app/help/core.go | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/internal/app/help/core.go b/internal/app/help/core.go @@ -84,10 +84,10 @@ func Usage(verbose bool, exe string) ([]string, error) { results = append(results, command(commands.List, "", "list entries")) results = append(results, command(commands.Groups, "", "list groups")) results = append(results, command(commands.Find, isFilter, "find matching entries")) - results = append(results, command(commands.Move, "src dst", "move an entry from source to destination")) + results = append(results, command(commands.Move, "src dst", "move a group from source to destination")) results = append(results, command(commands.PasswordGenerate, "", "generate a password")) results = append(results, command(commands.ReKey, "", "rekey/reinitialize the database credentials")) - results = append(results, command(commands.Remove, isEntry, "remove an entry from the store")) + results = append(results, command(commands.Remove, "group", "remove an entry from the store")) 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, subCommand(commands.TOTP, commands.TOTPClip, isEntry, "copy totp code to clipboard"))