diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-23 22:12:57 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-23 22:13:22 +0200 |
commit | 47a1f0897313bbde85051e939af0fc8220feb175 (patch) | |
tree | 7b10d1d2443560df7c830845097ee0452b68957f /contrib/emacs/README.md | |
parent | 80aff35bf06ff20d6a938c0075b633b03333d8d7 (diff) | |
download | pass-47a1f0897313bbde85051e939af0fc8220feb175.tar.gz pass-47a1f0897313bbde85051e939af0fc8220feb175.tar.bz2 pass-47a1f0897313bbde85051e939af0fc8220feb175.zip |
emacs: import svend's tree
Diffstat (limited to '')
-rw-r--r-- | contrib/emacs/README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/emacs/README.md b/contrib/emacs/README.md new file mode 100644 index 0000000..53e1357 --- /dev/null +++ b/contrib/emacs/README.md @@ -0,0 +1,30 @@ +# Emacs password-store + +This package provides functions for working with pass ("the standard +Unix password manager"). + +http://www.zx2c4.com/projects/password-store + +## Setup + +The pass application must be installed and set up. See the pass +website for instructions + +## Example usage + +Interactive: + + M-x password-store-insert + Password entry: example + Password: ........ + Confirm password: ........ + + M-x password-store-copy + Password entry: example + Copied example to the kill ring. Will clear in 45 seconds. + Password cleared. + +Lisp: + + (password-store-insert "example" "password") + (password-store-get "example") ; Returns "password" |