1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-21 22:53:30 +01:00
Files
oh-my-zsh/plugins/adonis/adonis.plugin.zsh
2018-10-29 21:56:54 +01:00

38 lines
665 B
Bash

# Adonis Plugin
# This plugin provide autocompletion for adonis
# Adonis : https://adonisjs.com/
# Author: Dimensi0n | Erwan ROUSSEL
_adonis() {
local -a subcmds
subcmds=(
'addon:Create a new AdonisJs addon'
'install:'
'new'
'repl'
'serve'
'key\\:generate'
'make\\:command'
'make\\:controller'
'make\\:ehandler'
'make\\:exception'
'make\\:hook'
'make\\:listener'
'make\\:middleware'
'make\\:migration'
'make\\:model'
'make\\:provider'
'make\\:seed'
'make\\:trait'
'make\\:view'
'route\\:list'
'run\\:instructions'
)
_describe 'adonis' subcmds
}
compdef _adonis adonis