Completions for cmdkey command

This commit is contained in:
EmilySeville7cfg 2021-11-25 23:16:03 +10:00 committed by ridiculousfish
parent 9de5e1918f
commit 76e200e3f5

View File

@ -0,0 +1,21 @@
function __cmdkey_generate_args --description 'Function to generate args'
if not __fish_seen_argument --windows 'add' --windows 'generic'
echo -e '/add\tAdd a user name and password to the list
/generic\tAdd generic credentials to the list'
end
if not __fish_seen_argument --windows 'smartcard' --windows 'user'
echo -e '/smartcard\tRetrieve the credential from a smart card
/user:\tSpecify the user or account name to store with this entry'
end
if __fish_seen_argument --windows 'user'
echo -e '/pass\tSpecify the password to store with this entry'
end
echo -e '/delete\tDelete a user name and password from the list
/list:\tDisplay the list of stored user names and credentials
/?\tShow help'
end
complete --command cmdkey --no-files --arguments '(__cmdkey_generate_args)'