From 5b29fedad850299950195a1878fe4923778f9dcc Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 21 Jul 2008 19:15:22 +0000 Subject: 25324: Danek Duvall: some Solaris and more general completions --- Completion/Unix/Type/_zfs_dataset | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Completion/Unix/Type/_zfs_dataset (limited to 'Completion/Unix/Type/_zfs_dataset') diff --git a/Completion/Unix/Type/_zfs_dataset b/Completion/Unix/Type/_zfs_dataset new file mode 100644 index 000000000..1840fb413 --- /dev/null +++ b/Completion/Unix/Type/_zfs_dataset @@ -0,0 +1,22 @@ +#autoload + +local -a type typearg list + +zparseopts -D -E -a type t+: + +[[ -n $type[(r)fs] ]] && typearg=( filesystem ) +[[ -n $type[(r)vol] ]] && typearg=( $typearg volume ) +[[ -n $type[(r)snap] ]] && typearg=( $typearg snapshot ) +[[ -n $typearg ]] && typearg=( -t ${(j:,:)typearg} ) + +datasetlist=( ${="$(zfs list -H -o name $typearg)":#no datasets available} ) + +expl_type=${typearg[2,-1]//,/\/} +if [[ -n $type[(r)mtpt] ]]; then + mlist=( ${="$(zfs list -H -o mountpoint $typearg)":#no mountpoints available} ) + datasetlist=( $datasetlist $mlist ) + expl_type="$expl_type/mountpoint" +fi + +# compadd "$@" - $list +_wanted dataset expl "$expl_type" _multi_parts "$@" / datasetlist -- cgit 1.4.1