Skip to content
Snippets Groups Projects
Commit e25114c4 authored by Svend Sorensen's avatar Svend Sorensen
Browse files

Implement interactive rename function

parent 8a491f16
No related branches found
No related tags found
No related merge requests found
......@@ -212,6 +212,13 @@ Default PASSWORD-LENGTH is `password-store-password-length'."
(interactive (list (password-store--completing-read)))
(message (password-store--run-remove entry t)))
;;;###autoload
(defun password-store-rename (entry new-entry)
"Rename ENTRY to NEW-ENTRY."
(interactive (list (password-store--completing-read)
(read-string "Rename entry to: ")))
(message (password-store--run-rename entry new-entry t)))
;;;###autoload
(defun password-store-version ()
"Show version of pass executable."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment