update folderstructure to match xdg-ninja
This commit is contained in:
parent
ec2e91d063
commit
50ecdf4696
1040 changed files with 1898 additions and 2830 deletions
|
@ -0,0 +1,9 @@
|
|||
# Phing plugin
|
||||
|
||||
This plugin adds autocompletion for [`phing`](https://github.com/phingofficial/phing) targets.
|
||||
|
||||
To use it, add `phing` to the plugins array of your `.zshrc` file:
|
||||
|
||||
```zsh
|
||||
plugins=(... phing)
|
||||
```
|
|
@ -0,0 +1,7 @@
|
|||
_phing () {
|
||||
if [ -f build.xml ]; then
|
||||
compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|grep -v "Warning:"|awk '{print $1}')
|
||||
fi
|
||||
}
|
||||
|
||||
compdef _phing phing
|
Loading…
Add table
Add a link
Reference in a new issue