We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a4b60 commit 479a806Copy full SHA for 479a806
utils.go
@@ -22,6 +22,7 @@ const DELIMSIZE int = 69
22
type SettingsOverride struct {
23
ShowPasswords bool
24
CopyPassword bool
25
+ AssumeYes bool
26
}
27
28
// Settings structure for local config
@@ -444,6 +445,11 @@ func setCopyPasswordToClipboard() error {
444
445
return nil
446
447
448
+func setAssumeYes() error {
449
+ settingsRider.AssumeYes = true
450
+ return nil
451
+}
452
+
453
func copyPasswordToClipboard(passwd string) {
454
clipboard.WriteAll(passwd)
455
0 commit comments