commit 7b4a8790676a3d6a3a236aed1cc23dcf7db5a563
parent fbea22f67861e99b19572bef9929b57e41d530c7
Author: Sean Enck <sean@ttypty.com>
Date: Fri, 31 Mar 2023 18:11:55 -0400
update help text for what this is
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/internal/inputs/env.go b/internal/inputs/env.go
@@ -334,7 +334,7 @@ func ListEnvironmentVariables(showValues bool) []string {
var results []string
results = append(results, e.formatEnvironmentVariable(true, StoreEnv, "", "directory to the database file", []string{"file"}))
results = append(results, e.formatEnvironmentVariable(true, keyModeEnv, commandKeyMode, "how to retrieve the database store password", []string{commandKeyMode, plainKeyMode}))
- results = append(results, e.formatEnvironmentVariable(true, keyEnv, "", fmt.Sprintf("the database key ('%s' mode) or shell command to run ('%s' mode)\nto retrieve the database password", plainKeyMode, commandKeyMode), []string{commandArgsExample, "password"}))
+ results = append(results, e.formatEnvironmentVariable(true, keyEnv, "", fmt.Sprintf("the database key ('%s' mode) or command to run ('%s' mode)\nto retrieve the database password", plainKeyMode, commandKeyMode), []string{commandArgsExample, "password"}))
results = append(results, e.formatEnvironmentVariable(false, noClipEnv, isNo, "disable clipboard operations", isYesNoArgs))
results = append(results, e.formatEnvironmentVariable(false, noColorEnv, isNo, "disable terminal colors", isYesNoArgs))
results = append(results, e.formatEnvironmentVariable(false, interactiveEnv, isYes, "enable interactive mode", isYesNoArgs))