fire-cli 0.1.2

command managet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#compdef fire-cli

_fire_completations() {
  echo "local subcmds=('c:description' 'test:$1' 'pwd:$(pwd)')"
}

_fire_cli() {
  local current_command="${(ps: :)${words}}"
  eval $(_fire_completations "$current_command")

  _describe 'command' subcmds
}

_fire_cli "$@"