1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-11 04:58:19 +03:00

zsh/_networkctl: remove duplicated argument for completion (#31926)

It is unnecessary, which will mess the completion.

(cherry picked from commit 733518b41350ce781c7e41a4c866eafb9e549e1f)
(cherry picked from commit fd2a6ea0a8d4b535e4ac3645772b946906e02c7d)
(cherry picked from commit 00df4dea6a3c4ba101953c1ffd39a9b16220190d)
This commit is contained in:
Collin L 2024-07-22 17:36:47 +08:00 committed by Luca Boccassi
parent b5f3e791c3
commit adfc8d2650

View File

@ -29,7 +29,7 @@
(list|status|up|down|cat|edit|lldp|delete|renew|forcerenew|reconfigure)
for link in ${(f)"$(_call_program links networkctl list --no-legend)"}; do _links+=($link[(w)2]:$link); done
if [[ -n "$_links" ]]; then
_describe -t links 'links' _links _links $( [[ $cmd == (edit|cat) ]] && print -- -P@ )
_describe -t links 'links' _links $( [[ $cmd == (edit|cat) ]] && print -- -P@ )
else
_message "no links"
fi