summaryrefslogtreecommitdiff
path: root/step-cli/zsh_autocomplete
blob: ffb9f9beaa6af940bf8b38267345f3f2a690a908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#compdef step

function _step {
  local -a opts
  opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} --generate-bash-completion)}")
  if [[ "${opts}" != "" ]]; then
    _describe -t step-commands 'values' opts
  else
    _path_files
  fi
}

_step "$@"