kasi

POSIX shell password manager that is cryptography program-agnostic
Log | Files | Refs | README | LICENSE

autocomplete.zsh (244B)


      1 #compdef kasi
      2 
      3 passwords() {
      4 	files=("${(f)$(find ${KASI_DIR:-$HOME/.kasi} -type f -printf '%P\n' | sort)}")
      5 	_multi_parts / files
      6 }
      7 
      8 _arguments \
      9 	'1:kasi commands:(copy edit generate help pass view totp totp_view)' \
     10 	'2:passwords:passwords'