Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
7a0dac80
Commit
7a0dac80
authored
Jan 23, 2018
by
Jeremy Worboys
Committed by
Robby Russell
Jan 22, 2018
Browse files
Add ExpressionEngine CMS autocompletion (#6556)
parent
215e43aa
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/eecms/eecms.plugin.zsh
0 → 100644
View file @
7a0dac80
# ExpressionEngine CMS basic command completion
_eecms_console
()
{
echo
"php
$(
find
.
-maxdepth
3
-mindepth
1
-name
'eecms'
-type
f |
head
-n
1
)
"
}
_eecms_get_command_list
()
{
`
_eecms_console
`
|
sed
"/Available commands/,/^/d"
|
sed
"s/[[:space:]].*//g"
}
_eecms
()
{
compadd
`
_eecms_get_command_list
`
}
compdef _eecms
'`_eecms_console`'
compdef _eecms
'system/ee/eecms'
compdef _eecms eecms
#Alias
alias
eecms
=
'`_eecms_console`'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment