- Clone the repository into
~/.oh-my-zsh/custom/plugins/symfony-console
directory.
git clone https://github.com/jerguslejko/zsh-symfony-completion.git ~/.oh-my-zsh/custom/plugins/symfony-console
- Activate the plugin by inserting
symfony-console
into theplugins
list in your~/.zshrc
.
plugins=(symfony-console)
- Optionally, specify which
symfony/console
tools you want to activate auto-completion for. If you do not define this variable, values below will be used as defaults. Please note, this line MUST appear beforesource $ZSH/oh-my-zsh.sh
.
export SYMFONY_CONSOLE_TOOLS="composer artisan valet envoy bin/console"
- Reload your shell
You can use this auto-completion plugin for local as well as global tools. It will first check if there is a file in pwd
that matches one of tools specified in the SYMFONY_CONSOLE_TOOLS list. If there is one, the plugin will use it (eg. artisan
). Otherwise, it will try to find a globally available command (eg. composer
).
Copyright (c) 2016 Jerguš Lejko
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.