commit 17533b065542dd709e6da6764e81472be3109851
parent f19188da18af16b76d851e6c2b7b68bf4e7f1100
Author: Sean Enck <sean@ttypty.com>
Date: Fri, 31 Mar 2023 19:22:00 -0400
indicate this option should be used with thought
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/internal/inputs/env.go b/internal/inputs/env.go
@@ -284,6 +284,6 @@ func ListEnvironmentVariables(showValues bool) []string {
results = append(results, e.formatEnvironmentVariable(false, clipOSC52Env, env.No, "enable OSC52 clipboard mode", isYesNoArgs))
results = append(results, e.formatEnvironmentVariable(false, KeyFileEnv, "", "additional keyfile to access/protect the database", []string{"keyfile"}))
results = append(results, e.formatEnvironmentVariable(false, ModTimeEnv, ModTimeFormat, fmt.Sprintf("input modification time to set for the entry\n(expected format: %s)", ModTimeFormat), []string{"modtime"}))
- results = append(results, e.formatEnvironmentVariable(false, JSONPlainTextEnv, env.No, "JSON output will show values as plaintext (not hashed)", isYesNoArgs))
+ results = append(results, e.formatEnvironmentVariable(false, JSONPlainTextEnv, env.No, "JSON output will show values as plaintext (not hashed)\nuse this option with CAUTION", isYesNoArgs))
return results
}