From 4ff2c61370e82cd04b8e19fbf5ad41ee69c50c52 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Fri, 19 Apr 2024 21:30:56 +0200 Subject: [PATCH] Print URL and UserName when copying the password --- copy.go | 1 + 1 file changed, 1 insertion(+) diff --git a/copy.go b/copy.go index aaf1a09..214b0ea 100644 --- a/copy.go +++ b/copy.go @@ -20,6 +20,7 @@ func copyCmd(cmd *cobra.Command, args []string) error { markAsAccessed(entry) + fmt.Printf("URL: %s\n", entry.GetContent("URL")) fmt.Printf("UserName: %s\n", entry.GetContent("UserName")) return nil