summaryrefslogtreecommitdiff
path: root/Completion/Unix
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2024-04-21 00:53:50 +0200
committerMikael Magnusson <mikachu@gmail.com>2024-05-20 20:19:06 +0200
commitbd19d4e3948253af621fcb6e1a1f8a7b37115fdd (patch)
tree8d1327271238bc2fff9cda2f4784d26973b7f241 /Completion/Unix
parentf6e005a9ef55b1fbc5291729faa2ab46bf3d9e8f (diff)
downloadzsh-bd19d4e3948253af621fcb6e1a1f8a7b37115fdd.tar.gz
zsh-bd19d4e3948253af621fcb6e1a1f8a7b37115fdd.zip
52895: Partial revert of 44274 which broke _baudrates
_description does not accept -o numeric, which resulted in _description:zformat:89: invalid argument: expl The array is already sorted correctly in the completer so I don't see any need to have the completion sort it again anyway.
Diffstat (limited to 'Completion/Unix')
-rw-r--r--Completion/Unix/Type/_baudrates5
1 files changed, 3 insertions, 2 deletions
diff --git a/Completion/Unix/Type/_baudrates b/Completion/Unix/Type/_baudrates
index a9d7fe541..416a4919f 100644
--- a/Completion/Unix/Type/_baudrates
+++ b/Completion/Unix/Type/_baudrates
@@ -72,6 +72,7 @@ if (( ${+opts[-f]} )); then
done
fi
-# -1 removes dupes (which there shouldn't be)
-_description -1 -o numeric baud-rates expl 'baud rate'
+# -1V removes dupes (which there shouldn't be) and otherwise leaves the
+# order in the $rates array intact.
+_description -1V baud-rates expl 'baud rate'
compadd "${argv[@]}" "$expl[@]" -- "${rates[@]}"