2021-07-26 05:14:45 +00:00
|
|
|
complete --command yk --no-files
|
|
|
|
complete --command yk --arguments "(yk list)" --description "Credential to get TOTP for"
|
|
|
|
complete --command yk --old-option "debug" --description "enable debug logging"
|
|
|
|
complete --command yk --old-option "version" --description "print version and exit"
|
|
|
|
complete --command yk --old-option "set-password" --description "prompt for key password and store in system keychain"
|
2020-12-11 04:55:55 +00:00
|
|
|
|
|
|
|
function yk-copy --description "Select a credential using fzf and copy it to clipboard"
|
2021-07-22 19:01:26 +00:00
|
|
|
set result (yk (yk list | fzf))
|
|
|
|
|
|
|
|
if command -q pbcopy
|
|
|
|
echo "$result" | pbcopy
|
|
|
|
else if command -q xsel
|
|
|
|
echo "$result" | xsel --clipboard
|
|
|
|
else if command -q xclip
|
|
|
|
echo "$result" | xclip
|
|
|
|
else
|
|
|
|
echo "No clipboard command found. Code is $result"
|
|
|
|
end
|
2020-12-11 04:55:55 +00:00
|
|
|
end
|