1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-27 08:10:08 +00:00

Add autocompletion

This commit is contained in:
Erwan ROUSSEL 2018-10-29 21:56:54 +01:00
parent 5e805efe5d
commit 8c40604e14

View file

@ -0,0 +1,38 @@
# 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