mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Fix typo
This commit is contained in:
parent
dc4ca005f8
commit
bb7eb33b22
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ function __fish_complete_gpg_key_id -d 'Complete using gpg key ids' -a __fish_co
|
|||
case "uid*"
|
||||
# Extract user ids (note: gpg escapes colons as '\x3a')
|
||||
set -l __uid (string split ":" -- $garbage)
|
||||
set -l uid (string replace -a '\x3a' ':' -- $__uuid[10])
|
||||
set -l uid (string replace -a '\x3a' ':' -- $__uid[10])
|
||||
printf "%s\t%s\n" $keyid $uid
|
||||
case "pub*"
|
||||
# Extract key fingerprints (no subkeys)
|
||||
|
|
Loading…
Reference in a new issue