Merge 8098afeefb
into 4fec0a46e7
This commit is contained in:
commit
ac100691c5
13
plugins/invoker/README.md
Normal file
13
plugins/invoker/README.md
Normal file
@ -0,0 +1,13 @@
|
||||
# invoker autocomplete plugin
|
||||
|
||||
* Adds autocomplete options for all invoker commands.
|
||||
|
||||
## Requirements
|
||||
|
||||
In order to make this work, you will need to install the invoker gem
|
||||
|
||||
gem install it like:
|
||||
|
||||
gem install invoker
|
||||
|
||||
more details about the gem at http://invoker.codemancers.com and https://github.com/code-mancers/invoker
|
52
plugins/invoker/_invoker
Normal file
52
plugins/invoker/_invoker
Normal file
@ -0,0 +1,52 @@
|
||||
#compdef invoker
|
||||
|
||||
# Invoker autocompletion for oh-my-zsh
|
||||
# Requires: invoker gem installed
|
||||
# Author: Amitava (https://github.com/abasak)
|
||||
|
||||
local curcontext="$curcontext" state line ret=1
|
||||
|
||||
_arguments -C \
|
||||
'1: :->cmds' \
|
||||
'*:: :->args' && ret=0
|
||||
|
||||
case $state in
|
||||
cmds)
|
||||
_values 'invoker command' \
|
||||
'add[Add a program to Invoker server]' \
|
||||
'add_http[Add an external process to Invoker DNS server]' \
|
||||
'help[Describe available commands or one specific command]' \
|
||||
'list[List all running processes]' \
|
||||
'reload[Reload a process managed by Invoker]' \
|
||||
'remove[Stop a process managed by Invoker]' \
|
||||
'setup[Run Invoker setup]' \
|
||||
'start[Start Invoker server]' \
|
||||
'stop[Stop Invoker daemon]' \
|
||||
'tail[Tail a particular process]' \
|
||||
'uninstall[Uninstall Invoker and all installed files]' \
|
||||
'version[Print Invoker version]'
|
||||
ret=0
|
||||
;;
|
||||
|
||||
args)
|
||||
case $line[1] in
|
||||
help)
|
||||
if (( CURRENT == 2 )); then
|
||||
_values 'commands' \
|
||||
'add' 'add_http' 'list' 'reload' 'remove' 'setup' 'start' 'stop' 'tail' 'uninstall' 'version'
|
||||
fi
|
||||
ret=0
|
||||
;;
|
||||
|
||||
start)
|
||||
_arguments \
|
||||
'(-d --daemon)'{-d,--daemon}'[Daemonize the server into the background]' \
|
||||
'(--port)--port[Port series to be used for starting rack servers]' \
|
||||
'1:config file:_path_files'
|
||||
ret=0
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
|
||||
return ret
|
Loading…
Reference in New Issue
Block a user