From a4c7348f2bb8bdfd9ba4b8277cb2ffa024e95d61 Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Mon, 24 Feb 2025 11:09:54 +0900 Subject: [PATCH] completions: fix zsh completions array parameter names Since copied from the exsisting completion but missed to change. Signed-off-by: Tokunori Ikegami --- completions/_nvme | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/completions/_nvme b/completions/_nvme index 605e4522..ee5e7ce3 100644 --- a/completions/_nvme +++ b/completions/_nvme @@ -2644,7 +2644,7 @@ _nvme () { ;; (mgmt-addr-list-log) local _mal_log - _caplog=( + _mal_log=( /dev/nvme':supply a device to use (required)' --verbose':Increase the information detail in the output.' -v':alias for --verbose' @@ -2658,7 +2658,7 @@ _nvme () { ;; (rotational-media-info-log) local _rmi_log - _caplog=( + _rmi_log=( /dev/nvme':supply a device to use (required)' --endg-id=':Endurance Group Identifier' -e':alias of --endg-id' @@ -2688,7 +2688,7 @@ _nvme () { ;; (dispersed-ns-participating-nss-log) local _dns_psub_log - _caplog=( + _dns_psub_log=( /dev/nvme':supply a device to use (required)' --namespace-id=':show infos for namespace ' -n':alias of --namespace-id' @@ -2704,7 +2704,7 @@ _nvme () { ;; (reachability-groups-log) local _rg_log - _caplog=( + _rg_log=( /dev/nvme':supply a device to use (required)' --groups-only':Return Groups Only' -g':alias for --groups-only' @@ -2722,7 +2722,7 @@ _nvme () { ;; (reachability-associations-log) local _ra_log - _caplog=( + _ra_log=( /dev/nvme':supply a device to use (required)' --associations-only':Return Associations Only' -a':alias for --associations-only' -- 2.50.1