mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
gpg completions: complete key id for --edit-key
More useful than just user id since can have multiple keys per user.
This commit is contained in:
parent
90b9dd3627
commit
dc4ca005f8
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ function __fish_complete_gpg -d "Internal function for gpg completion code dedup
|
|||
|
||||
complete -c $__fish_complete_gpg_command -l gen-key -d "Generate a new key pair"
|
||||
|
||||
complete -c $__fish_complete_gpg_command -l edit-key -d "Present a menu which enables you to do all key related tasks" -xa "(__fish_complete_gpg_user_id $__fish_complete_gpg_command)"
|
||||
complete -c $__fish_complete_gpg_command -l edit-key -d "Present a menu which enables you to do all key related tasks" -xa "(__fish_complete_gpg_key_id $__fish_complete_gpg_command)"
|
||||
|
||||
complete -c $__fish_complete_gpg_command -l sign-key -xa "(__fish_complete_gpg_user_id $__fish_complete_gpg_command)" -d "Sign a public key with your secret key"
|
||||
complete -c $__fish_complete_gpg_command -l lsign-key -xa "(__fish_complete_gpg_user_id $__fish_complete_gpg_command)" -d "Sign a public key with your secret key but mark it as non exportable"
|
||||
|
|
Loading…
Reference in a new issue