1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
|
;;; pass.el --- Major mode for password-store.el -*- lexical-binding: t; -*-
;; Copyright (C) 2015-2019 Nicolas Petton & Damien Cassou
;; Author: Nicolas Petton <petton.nicolas@gmail.com>
;; Damien Cassou <damien@cassou.me>
;; Version: 2.0
;; GIT: https://github.com/NicolasPetton/pass
;; Package-Requires: ((emacs "25") (password-store "1.7.4") (f "0.17"))
;; Created: 09 Jun 2015
;; Keywords: password-store, password, keychain
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Major mode for password-store.el
;;; Code:
(require 'password-store)
(require 'imenu)
(require 'button)
(require 'f)
(require 'subr-x)
(defgroup pass '()
"Major mode for password-store."
:group 'password-store)
(defcustom pass-show-keybindings t
"Whether the keybindings should be displayed in the pass buffer."
:group 'pass
:type 'boolean)
(defcustom pass-username-field "username"
"Field name used in the files to indicate an username."
:group 'pass
:type 'string)
(defvar pass-buffer-name "*Password-Store*"
"Name of the pass buffer.")
(defvar pass-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "n") #'pass-next-entry)
(define-key map (kbd "p") #'pass-prev-entry)
(define-key map (kbd "M-n") #'pass-next-directory)
(define-key map (kbd "M-p") #'pass-prev-directory)
(define-key map (kbd "k") #'pass-kill)
(define-key map (kbd "s") #'isearch-forward)
(define-key map (kbd "?") #'describe-mode)
(define-key map (kbd "g") #'pass-update-buffer)
(define-key map (kbd "i") #'pass-insert)
(define-key map (kbd "I") #'pass-insert-generated)
(define-key map (kbd "j") #'pass-goto-entry)
(define-key map (kbd "w") #'pass-copy)
(define-key map (kbd "b") #'pass-copy-username)
(define-key map (kbd "f") #'pass-copy-field)
(define-key map (kbd "u") #'pass-copy-url)
(define-key map (kbd "U") #'pass-browse-url)
(define-key map (kbd "v") #'pass-view)
(define-key map (kbd "r") #'pass-rename)
(define-key map (kbd "o") #'pass-otp-options)
(define-key map (kbd "RET") #'pass-view)
(define-key map (kbd "q") #'pass-quit)
map)
"Keymap for `pass-mode'.")
(defface pass-mode-header-face '((t . (:inherit font-lock-keyword-face)))
"Face for displaying the header of the pass buffer."
:group 'pass)
(defface pass-mode-entry-face '((t . ()))
"Face for displaying pass entry names."
:group 'pass)
(defface pass-mode-directory-face '((t . (:inherit
font-lock-function-name-face
:weight
bold)))
"Face for displaying password-store directory names."
:group 'pass)
(define-derived-mode pass-mode fundamental-mode "Password-Store"
"Major mode for editing password-stores.
\\{pass-mode-map}"
(setq default-directory (password-store-dir))
(setq imenu-prev-index-position-function
'pass--imenu-prev-index-position-function)
(setq imenu-extract-index-name-function
'pass--imenu-extract-index-name-function)
(read-only-mode))
(defun pass--imenu-prev-index-position-function ()
"Move point to previous line in current buffer.
This function is used as a value for
`imenu-prev-index-position-function'."
(pass-prev-entry)
(not (bobp)))
(defun pass--imenu-extract-index-name-function ()
"Return imenu name for pass entry at point.
This function is used as a value for
`imenu-extract-index-name-function'."
(pass-entry-at-point))
(defun pass-setup-buffer ()
"Setup the password-store buffer."
(pass-mode)
(pass-update-buffer))
;;;###autoload
(defun pass ()
"Open the password-store buffer."
(interactive)
(if (get-buffer pass-buffer-name)
(progn
(switch-to-buffer pass-buffer-name)
(pass-update-buffer))
(let ((buf (get-buffer-create pass-buffer-name)))
(pop-to-buffer buf)
(pass-setup-buffer))))
(defmacro pass--with-writable-buffer (&rest body)
"Evaluate BODY as if the current buffer was not in `read-only-mode'."
(declare (indent 0) (debug t))
`(let ((inhibit-read-only t))
,@body))
(defmacro pass--save-point (&rest body)
"Evaluate BODY and restore the point.
Similar to `save-excursion' but only restore the point."
(declare (indent 0) (debug t))
(let ((point (make-symbol "point")))
`(let ((,point (point)))
,@body
(goto-char (min ,point (point-max))))))
(defun pass-quit ()
"Kill the buffer quitting the window."
(interactive)
(when (y-or-n-p "Kill all pass entry buffers? ")
(dolist (buf (buffer-list))
(with-current-buffer buf
(when (eq major-mode 'pass-view-mode)
(kill-buffer buf)))))
(quit-window t))
(defun pass-next-entry ()
"Move point to the next entry found."
(interactive)
(pass--goto-next #'pass-entry-at-point))
(defun pass-prev-entry ()
"Move point to the previous entry."
(interactive)
(pass--goto-prev #'pass-entry-at-point))
(defun pass--target-entry-pos (target)
"Return position of TARGET entry or nil if it doesn't exist."
(save-excursion
(goto-char (point-min))
(pass--goto-next (lambda () (equal (pass-entry-at-point) target)))
(unless (eobp)
(point))))
(defun pass-goto-entry (entry)
"Move point to ENTRY and return its position.
If ENTRY doesn't exist in the buffer, then preserve point and return nil.
Note that ENTRY must reflect its deep level in the directory structure;
for instance, an entry `bar' inside the subdirectory `foo', must be
specified as `foo/bar'.
When called interactively, prompt users with completion using
all entries in the pass buffer."
(interactive
(list (completing-read "Jump to entry: "
(password-store-list) nil 'match)))
(let ((entry-pos (pass--target-entry-pos entry)))
(if entry-pos
(goto-char entry-pos)
(message "No entry matches %s in current directory" entry)
nil)))
(defun pass-next-directory ()
"Move point to the next directory found."
(interactive)
(pass--goto-next #'pass-directory-at-point))
(defun pass-prev-directory ()
"Move point to the previous directory."
(interactive)
(pass--goto-prev #'pass-directory-at-point))
(defmacro pass--with-closest-entry (varname &rest body)
"Bound VARNAME to the closest entry before point and evaluate BODY."
(declare (indent 1) (debug t))
`(let ((,varname (pass-closest-entry)))
(if ,varname
(progn ,@body)
(message "No entry at point"))))
(defun pass-rename (new-name)
"Rename the entry at point to NEW-NAME."
(interactive (list (read-string "Rename entry to: " (pass-closest-entry))))
(pass--with-closest-entry entry
(password-store-rename entry new-name)
(pass-update-buffer)))
(defun pass-kill ()
"Remove the entry at point."
(interactive)
(pass--with-closest-entry entry
(when (yes-or-no-p (format "Do you want remove the entry %s? " entry))
(password-store-remove entry)
(pass-update-buffer))))
(defun pass-update-buffer ()
"Update the current buffer contents."
(interactive)
(pass--save-point
(pass--with-writable-buffer
(delete-region (point-min) (point-max))
(pass-display-data))))
(defun pass-insert (arg)
"Insert an entry to the password-store.
The password is read from user input.
When called with a prefix argument ARG, visit the entry file."
(interactive "P")
(if arg
(pass-insert-multiline)
(progn
(call-interactively #'password-store-insert)
(pass-update-buffer))))
(defun pass-insert-multiline ()
"This function behaves similarly to `pass -m'.
It creates an empty entry file, and visit it."
(let ((entry (format "%s.gpg" (read-string "Password entry: ")))
(default-directory (password-store-dir)))
(make-directory (file-name-directory entry) t)
(find-file (expand-file-name entry (password-store-dir)))))
(defun pass-insert-generated ()
"Insert an entry to the password-store.
Use a generated password instead of reading the password from
user input."
(interactive)
(call-interactively #'password-store-generate)
(pass-update-buffer))
(defun pass-view ()
"Visit the entry at point."
(interactive)
(pass--with-closest-entry entry
(find-file (concat (f-join (password-store-dir) entry) ".gpg"))))
(defun pass-copy ()
"Add the password of entry at point to kill ring."
(interactive)
(pass--with-closest-entry entry
(password-store-copy entry)))
(defun pass--copy-field (field)
"Add FIELD of entry at point to kill ring."
(pass--with-closest-entry entry
(let* ((inhibit-message t)
(parsed-entries (password-store-parse-entry entry)))
(unless (assoc field parsed-entries)
(user-error "Field `%s' not in %s" field entry))
(password-store-copy-field entry field))))
(defun pass-copy-field (field)
"Add FIELD of entry at point to kill ring.
When called interactively, prompt users for field with completion
using all fields in the entry."
(interactive
(pass--with-closest-entry entry
(list (password-store-read-field entry))))
(if (equal field "secret") (pass-copy)
(pass--copy-field field)))
(defun pass-copy-username ()
"Add username of entry at point to kill ring."
(interactive)
(pass--copy-field pass-username-field))
(defun pass-copy-url ()
"Add url of entry at point to kill ring."
(interactive)
(pass--copy-field password-store-url-field))
(defun pass-display-data ()
"Display the password-store data into the current buffer."
(let ((items (pass--tree)))
(pass-display-header)
(pass-display-item items)))
(defun pass-display-header ()
"Display the header in to the current buffer."
(insert "Password-store directory:")
(put-text-property (point-at-bol) (point) 'face 'pass-mode-header-face)
(insert " ")
(pass--display-keybindings-toggle)
(insert "\n\n")
(when pass-show-keybindings
(pass--display-keybindings '((pass-copy . "Copy password")
(pass-copy-username . "Copy username")
(pass-copy-url . "Copy url")))
(insert "\n")
(pass--display-keybindings '((pass-copy-field . "Copy field")
(pass-goto-entry . "Jump to Entry")
(pass-browse-url . "Browse url")))
(insert "\n")
(pass--display-keybindings '((pass-insert . "Insert")
(pass-next-entry . "Next")
(pass-update-buffer . "Update")))
(insert "\n")
(pass--display-keybindings '((pass-insert-generated . "Generate")
(pass-prev-entry . "Previous")
(pass-otp-options . "OTP Support")))
(insert "\n")
(pass--display-keybindings '((pass-rename . "Rename")
(pass-next-directory . "Next dir")
(pass-view . "View entry")))
(insert "\n")
(pass--display-keybindings '((pass-kill . "Delete")
(pass-prev-directory . "Previous dir")
(describe-mode . "Help")))
(newline)
(newline)))
(defun pass--display-keybindings-toggle ()
"Display a button to toggle whether keybindings should be displayed."
(let ((label (if pass-show-keybindings
"[Hide keybindings]"
"[Show keybindings]")))
(insert-button label 'action #'pass--toggle-display-keybindings)))
(defun pass--toggle-display-keybindings (&rest _)
"Toggle displaying the keybindings and update the buffer."
(setq pass-show-keybindings (not pass-show-keybindings))
(put pass-show-keybindings
'customized-value
(list (custom-quote (symbol-value pass-show-keybindings))))
(pass-update-buffer))
(defun pass--display-keybindings (bindings)
"Display the keybinding in each item of BINDINGS.
BINDINGS is an alist of bindings."
(mapc (lambda (pair)
(pass--display-keybinding (car pair) (cdr pair)))
bindings))
(defun pass--display-keybinding (command label)
"Insert the associated keybinding for COMMAND with LABEL."
(insert (format "%8s %-13s \t "
(format "%s"
(propertize (substitute-command-keys
(format "<\\[%s]>" (symbol-name command)))
'face 'font-lock-constant-face))
label)))
(defun pass-display-item (item &optional indent-level)
"Display the directory or entry ITEM into the current buffer.
If INDENT-LEVEL is specified, add enough spaces before displaying
ITEM."
(unless indent-level (setq indent-level 0))
(let ((directory (listp item)))
(pass-display-item-prefix indent-level)
(if directory
(pass-display-directory item indent-level)
(pass-display-entry item))))
(defun pass-display-entry (entry)
"Display the password-store entry ENTRY into the current buffer."
(let ((entry-name (f-filename entry)))
(insert entry-name)
(add-text-properties (point-at-bol) (point)
`(face pass-mode-entry-face pass-entry ,entry))
(newline)))
(defun pass-display-directory (directory indent-level)
"Display the directory DIRECTORY into the current buffer.
DIRECTORY is a list, its CAR being the name of the directory and its CDR
the entries of the directory. Add enough spaces so that each entry is
indented according to INDENT-LEVEL."
(let ((name (car directory))
(items (cdr directory)))
(insert name)
(add-text-properties (point-at-bol) (point)
`(face pass-mode-directory-face pass-directory ,name))
(newline)
(dolist (item items)
(pass-display-item item (1+ indent-level)))))
(defun pass-display-item-prefix (indent-level)
"Display some indenting text according to INDENT-LEVEL."
(dotimes (_ (max 0 (* (1- indent-level) 4)))
(insert " "))
(unless (zerop indent-level)
(insert "├── ")))
(defun pass-entry-at-point ()
"Return the `pass-entry' property at point."
(get-text-property (point-at-eol) 'pass-entry))
(defun pass-directory-at-point ()
"Return the `pass-directory' property at point."
(get-text-property (point) 'pass-directory))
(defun pass-closest-entry ()
"Return the closest entry in the current buffer, looking backward."
(save-excursion
(or (pass-entry-at-point)
(unless (bolp)
(forward-line -1)
(pass-closest-entry)))))
(defun pass-otp-options (option)
"Dispatch otp actions depending on user OPTION input.
Display help message with OTP functionality options."
(interactive
(list
(read-char-choice "[i] Insert, [a] Append, [s] Append from screenshot, [o] Copy token, [u] Copy URI, or [C-g] to abort: "
'(?i ?a ?s ?o ?u))))
(unless (require 'password-store-otp nil t)
(user-error "You cannot do this without installing `password-store-otp' first"))
(pcase option
(?i (pass-otp-insert))
(?a (pass-otp-append))
(?s (pass-otp-from-screenshot))
(?o (pass-otp-token-copy))
(?u (pass-otp-uri-copy))))
(defun pass-otp-token-copy ()
"Add OTP Token from closest entry to kill ring."
(interactive)
(pass--with-closest-entry entry
(password-store-otp-token-copy entry)))
(defun pass-otp-uri-copy ()
"Add OTP URI from closest entry to kill ring."
(interactive)
(pass--with-closest-entry entry
(password-store-otp-uri-copy entry)))
(defun pass-otp-insert ()
"Insert an OTP URI entry to the password-store.
The password is read from user input."
(interactive)
(call-interactively #'password-store-otp-insert)
(pass-update-buffer))
(defun pass-otp-append ()
"Append an OTP URI to an existing entry in the password-store.
The password is read from user input."
(interactive)
(pass--with-closest-entry entry
(password-store-otp-append entry (read-passwd "OTP URI: " t)))
(pass-update-buffer))
(defun pass-otp-from-screenshot ()
"Append an OTP URI taken from a screenshot to an existing entry in the password-store."
(interactive)
(pass--with-closest-entry entry
(password-store-otp-append-from-image entry))
(pass-update-buffer))
(defun pass--goto-next (pred)
"Move point to the next match of PRED."
(forward-line)
(while (not (or (eobp) (funcall pred)))
(forward-line)))
(defun pass--goto-prev (pred)
"Move point to the previous match of PRED."
(forward-line -1)
(while (not (or (bobp) (funcall pred)))
(forward-line -1)))
(defun pass--tree (&optional subdir)
"Return a tree of all entries in SUBDIR.
If SUBDIR is nil, return the entries of `(password-store-dir)'."
(unless subdir (setq subdir ""))
(let ((path (f-join (password-store-dir) subdir)))
(if (f-directory? path)
(unless (string= (f-filename subdir) ".git")
(cons (f-filename path)
(delq nil
(mapcar 'pass--tree
(f-entries path)))))
(when (and (equal (f-ext path) "gpg")
(not (backup-file-name-p path)))
(password-store--file-to-entry path)))))
;;; major mode for viewing entries
(defvar pass-view-mask "·············"
"Mask used to hide passwords.")
(defvar pass-view-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-c") #'pass-view-toggle-password)
(define-key map (kbd "C-c C-w") #'pass-view-copy-password)
map))
(make-variable-buffer-local 'pass-view-mode-map)
(defun pass-view-entry-name (&optional buffer)
"Return the entry name for BUFFER.
This function only works when `pass-view-mode' is enabled."
(with-current-buffer (or buffer (current-buffer))
(when (eq major-mode 'pass-view-mode)
(f-no-ext (replace-regexp-in-string
(format "^%s/" (f-expand (password-store-dir)))
""
buffer-file-name)))))
(defun pass-view-toggle-password ()
"Enable or disable password hiding."
(interactive)
(save-excursion
(goto-char (point-min))
(let ((buf-modified (buffer-modified-p)))
(if (string= (get-text-property (point) 'display)
pass-view-mask)
(pass-view-unmask-password)
(pass-view-mask-password))
(set-buffer-modified-p buf-modified))))
(defun pass-view-copy-password ()
"Copy the password of the entry in the current buffer."
(interactive)
(save-excursion
(goto-char (point-min))
(copy-region-as-kill (point) (line-end-position))
(message "Password copied to kill ring.")))
(defun pass-view-mask-password ()
"Mask the password of the current buffer."
(let ((inhibit-read-only t))
(save-excursion
(goto-char (point-min))
(set-text-properties (point-min) (line-end-position)
`(display ,pass-view-mask)))))
(defun pass-view-unmask-password ()
"Show the password in the current buffer."
(save-excursion
(goto-char (point-min))
(remove-text-properties (point-min) (line-end-position)
'(display nil))))
(defun pass-view-copy-token ()
"Copy current `pass-view' buffer's OTP token into clipboard."
(interactive)
(when-let (entry-name (pass-view-entry-name))
(password-store-otp-token-copy entry-name)))
(defun pass-view-qrcode ()
"Open a new buffer that displays a QR Code for the current entry."
(interactive)
(when-let (entry-name (pass-view-entry-name))
(let ((qrcode-buffer (get-buffer-create "*pass-view-qrcode*")))
(with-current-buffer qrcode-buffer
(fundamental-mode) ;; Return buffer *back* to fundamental, in case it isn't already.
(erase-buffer)
(insert (password-store-otp-qrcode entry-name "SVG"))
(image-mode)
(local-set-key (kbd "q") 'kill-this-buffer))
(switch-to-buffer-other-window qrcode-buffer))))
(defun pass-view--otp-remaining-secs ()
"Return a string with the remaining countdown base 30."
(let* ((base 30)
(remaining (- base (% (truncate (time-to-seconds (current-time)))
base)))
(remaining-str (number-to-string remaining)))
(if (< remaining 10) ;; leftpad-ing
(concat "0" remaining-str)
remaining-str)))
(defun pass-view--set-otp-header (token remaining-secs)
"Display OTP TOKEN and REMAINING-SECS in Header Line."
(let ((otp-data (concat (propertize " " 'display '((space :align-to 0)))
(propertize "OTP: " 'face 'pass-mode-header-face)
token " - " remaining-secs "s remaining"))
(key-binding (concat (propertize (substitute-command-keys
(format "<\\[%s]>" "pass-view-copy-token"))
'face 'font-lock-constant-face)
" Copy token")))
(setq header-line-format (concat otp-data " " key-binding))
(force-mode-line-update)))
(defun pass-view--has-otp-p ()
"Return t-ish value if there's an OTP URI in the current buffer.
nil otherwise."
(save-excursion
(goto-char (point-min))
(search-forward "otpauth://" nil t)))
(defun pass-view--otp-counter (buffer &optional last-token force-create)
"Reload BUFFER's OTP token and countdown, using LAST-TOKEN if any, and if FORCE-CREATE, build Header Line from scratch."
(when (buffer-live-p buffer)
(with-current-buffer buffer
(when (or header-line-format force-create)
(let* ((remaining-secs (pass-view--otp-remaining-secs))
(token (if (or (not last-token)
(string= remaining-secs "30"))
(password-store-otp-token (pass-view-entry-name buffer))
last-token)))
(pass-view--set-otp-header token remaining-secs)
(run-at-time 1 nil #'pass-view--otp-counter buffer token))))))
(defun pass-view--prepare-otp ()
"Start an OTP token/remaining secs counter in current buffer.
This function also binds a couple of handy OTP related key-bindings to
`pass-mode-map'."
(when (and (require 'password-store-otp nil t)
(pass-view--has-otp-p))
;; Build OTP counter
(pass-view--otp-counter (current-buffer) nil t)
;; Rebuild header after saving.
(add-hook 'after-save-hook
#'(lambda ()
(if (pass-view--has-otp-p)
(pass-view--otp-counter (current-buffer) nil t)
;; Remove header line
(setq header-line-format nil)))
t t)
;; Define a couple of OTP helper shortcuts
(define-key pass-view-mode-map (kbd "C-c C-o") #'pass-view-copy-token)
(define-key pass-view-mode-map (kbd "C-c C-q") #'pass-view-qrcode)))
(defun pass-browse-url ()
"Browse URL in entry at point."
(interactive)
(pass--with-closest-entry entry
(password-store-url entry)))
(defvar pass-view-font-lock-keywords '("^[^\s\n]+:" . 'font-lock-keyword-face)
"Font lock keywords for ‘pass-view-mode’.")
(define-derived-mode pass-view-mode nil "Pass-View"
"Major mode for viewing password-store entries.
\\{pass-view-mode-map}"
(pass-view-toggle-password)
(pass-view--prepare-otp)
(setq-local font-lock-defaults '(pass-view-font-lock-keywords t))
(font-lock-mode 1)
(message
(substitute-command-keys
"Press <\\[pass-view-toggle-password]> to display & edit the password")))
(add-to-list 'auto-mode-alist
(cons
(format "%s/.*\\.gpg\\'"
(expand-file-name (password-store-dir)))
'pass-view-mode))
(provide 'pass)
;;; pass.el ends here
|