NAME
MooseX::App::Plugin::ZshCompletion - zsh completion for your MooseX::App applications
SYNOPSIS
In your base class:
package MyApp;
use MooseX::App qw/ ZshCompletion /;
.zshrc:
fpath=('completion-dir/zsh' $fpath)
In your shell
zsh% myapp zsh_completion > completion-dir/_myapp
zsh% chmod u+x completion-dir/_myapp
zsh% exec zsh
DESCRIPTION
This plugin generates a zsh completion definition for your application.
METHODS
- plugin_metaroles
SEE ALSO
MooseX::App::Plugin::BashCompletion
LICENSE
COPYRIGHT AND LICENSE
Copyright (C) 2015 by Tina Mueller
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file.