mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 12:21:19 -03:00
Fix typo
This commit is contained in:
@@ -8,7 +8,7 @@ function __fish_complete_gpg_key_id -d 'Complete using gpg key ids' -a __fish_co
|
|||||||
case "uid*"
|
case "uid*"
|
||||||
# Extract user ids (note: gpg escapes colons as '\x3a')
|
# Extract user ids (note: gpg escapes colons as '\x3a')
|
||||||
set -l __uid (string split ":" -- $garbage)
|
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
|
printf "%s\t%s\n" $keyid $uid
|
||||||
case "pub*"
|
case "pub*"
|
||||||
# Extract key fingerprints (no subkeys)
|
# Extract key fingerprints (no subkeys)
|
||||||
|
|||||||
Reference in New Issue
Block a user