App-shcompgen

 view release on metacpan or  search on metacpan

script/shcompgen  view on Meta::CPAN

#!perl

# FRAGMENT id=shcompgen-nohint

use 5.010001;
use strict;
use warnings;

use App::shcompgen;
use Perinci::CmdLine::Any;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-10-07'; # DATE
our $DIST = 'App-shcompgen'; # DIST
our $VERSION = '0.325'; # VERSION

my $urlprefix = '/App/shcompgen/';
Perinci::CmdLine::Any->new(
    url => $urlprefix,
    log => $ENV{LOG} // 1,
    subcommands => {
        init     => {url=>"${urlprefix}init"},
        generate => {url=>"${urlprefix}generate"},
        list     => {url=>"${urlprefix}list"},
        remove   => {url=>"${urlprefix}remove"},

        'guess-shell' => {url=>"${urlprefix}guess_shell", summary => "(Utility) detect a program", tags=>["category:utility"]},
        'detect-prog' => {url=>"${urlprefix}detect_prog", summary => "(Utility) Guess running shell", tags=>["category:utility"]},
    },
)->run;

# ABSTRACT: Generate shell completion scripts
# PODNAME: shcompgen

__END__

=pod

=encoding UTF-8

=head1 NAME

shcompgen - Generate shell completion scripts

=head1 VERSION

This document describes version 0.325 of shcompgen (from Perl distribution App-shcompgen), released on 2022-10-07.

=head1 SYNOPSIS

Initialize (this will create completion scripts directory, create shell script
to initialize completion system):

 % shcompgen init

Generate shell completion scripts for all detectable programs in PATH:

 % shcompgen generate

Note that this distribution automatically runs 'init' and 'generate' the first
time it is installed, or when you upgrade from an older version. So normally you
don't have to do this manually.

Generate some programs only, replace if previously already exists, be verbose:

 % shcompgen generate --verbose --replace prog1 prog2 ./bin/prog3

List all shell completion scripts generated by us:

 % shcompgen list
 % shcompgen list --detail

Remove some shell completion scripts:

 % shcompgen remove prog1 prog2

Remove all generated shell completion scripts:

 % shcompgen remove

=head1 DESCRIPTION

Some shells, like bash/fish/zsh/tcsh, supports tab completion for programs. They
are usually activated by issuing one or more C<complete> (zsh uses C<compctl>)
internal shell commands. The completion scripts which contain these commands are
usually put in (e.g., for fish) C</etc/fish/completion/PROGNAME.fish> (if one
wants to install globally) or C<~/.config/fish/completions/PROGNAME.fish> (if

script/shcompgen  view on Meta::CPAN

completion script (e.g. for bash):

 complete -C foo foo

=item * Getopt::Long::Subcommand-based CLI scripts

If a script C<foo> is detected as a Perl script using
L<Getopt::Long::Subcommand>, we know that it can complete itself. Thus,
C<shcompgen> will generate this completion script (e.g. for bash):

 complete -C foo foo

=item * Getopt::Long-based CLI scripts

If a script C<foo> is detected as a Perl script using L<Getopt::Long>,
C<shcompgen> will try to extract the Getopt::Long spec specified by
C<GetOptions>, which can then tell it what options a script accepts. The
completion script cannot complete option values or arguments though, as there is
not enough information to do that. If you write the script, you might want to
switch to L<Getopt::Long::Complete> or L<Getopt::Long::Subcommand> for better
tab completion support.

=item * Getopt::Long::EvenLess-based CLI scripts

Basically the same as Getopt::Long-based scripts.

=item * Getopt::Long::Descriptive-based CLI scripts

Basically the same as Getopt::Long-based scripts.

=item * Getopt::Std-based CLI scripts

Basically the same as Getopt::Long-based scripts.

=item * Perinci::CmdLine-based CLI scripts

If a script like C<foo> is detected as a Perl script using L<Perinci::CmdLine>
(or its variant like L<Perinci::CmdLine::Lite> or L<Perinci::CmdLine::Any>) we
know that it can complete itself. Thus, C<shcompgen> will add this completion
script e.g. for bash:

 complete -C foo foo

=item * Other methods

Other methods will be added in the future, e.g. by parsing manpage or POD, and
so on.

=back

=head1 SUBCOMMANDS

=head2 B<detect-prog>

(Utility) Guess running shell.

=head2 B<generate>

Generate shell completion scripts for detectable programs.

=head2 B<guess-shell>

(Utility) detect a program.

=head2 B<init>

Initialize shcompgen.

This subcommand creates the completion directories and initialization shell
script, as well as run C<generate>.


=head2 B<list>

List all shell completion scripts generated by this script.

=head2 B<remove>

Remove shell completion scripts generated by this script.

=head1 OPTIONS

C<*> marks required options.

=head2 Common options

=over

=item B<--config-path>=I<s>, B<-c>

Set path to configuration file.

Can actually be specified multiple times to instruct application to read from
multiple configuration files (and merge them).


=item B<--config-profile>=I<s>, B<-P>

Set configuration profile to use.

A single configuration file can contain profiles, i.e. alternative sets of
values that can be selected. For example:

 [profile=dev]
 username=foo
 pass=beaver
 
 [profile=production]
 username=bar
 pass=honey

When you specify C<--config-profile=dev>, C<username> will be set to C<foo> and
C<password> to C<beaver>. When you specify C<--config-profile=production>,
C<username> will be set to C<bar> and C<password> to C<honey>.


=item B<--debug>

Shortcut for --log-level=debug.

=item B<--fish>

script/shcompgen  view on Meta::CPAN

C<warn>/C<warning>, C<error>, C<fatal>. By default, the level is usually set to
C<warn>, which means that log statements with level C<info> and less important
levels will not be shown. To increase verbosity, choose C<info>, C<debug>, or
C<trace>.

For more details on log level and logging, as well as how new logging levels can
be defined or existing ones modified, see L<Log::ger>.


=item B<--naked-res>

When outputing as JSON, strip result envelope.

Default value:

 0

By default, when outputing as JSON, the full enveloped result is returned, e.g.:

 [200,"OK",[1,2,3],{"func.extra"=>4}]

The reason is so you can get the status (1st element), status message (2nd
element) as well as result metadata/extra result (4th element) instead of just
the result (3rd element). However, sometimes you want just the result, e.g. when
you want to pipe the result for more post-processing. In this case you can use
C<--naked-res> so you just get:

 [1,2,3]


=item B<--no-config>, B<-C>

Do not use any configuration file.

If you specify C<--no-config>, the application will not read any configuration
file.


=item B<--no-env>

Do not read environment for default options.

If you specify C<--no-env>, the application wil not read any environment
variable.


=item B<--page-result>

Filter output through a pager.

This option will pipe the output to a specified pager program. If pager program
is not specified, a suitable default e.g. C<less> is chosen.


=item B<--quiet>

Shortcut for --log-level=error.

=item B<--shell>=I<s>

Override guessing and select shell manually.

Valid values:

 ["bash","fish","zsh","tcsh"]

=item B<--subcommands>

List available subcommands.

=item B<--tcsh>

Shortcut for --shell=tcsh.

See C<--shell>.

=item B<--trace>

Shortcut for --log-level=trace.

=item B<--verbose>

Shortcut for --log-level=info.

=item B<--version>, B<-v>

Display program's version and exit.

=item B<--view-result>

View output using a viewer.

This option will first save the output to a temporary file, then open a viewer
program to view the temporary file. If a viewer program is not chosen, a
suitable default, e.g. the browser, is chosen.


=item B<--zsh>

Shortcut for --shell=zsh.

See C<--shell>.

=back

=head2 Options for subcommand detect-prog

=over

=item B<--prog>=I<s>*

Can also be specified as the 1st command-line argument.

=back

=head2 Options for subcommand generate

=over

=item B<--per-option>

script/shcompgen  view on Meta::CPAN

It is also recommended to install L<shcompgen> (see above).

=head2 other shells

For fish and zsh, install L<shcompgen> as described above.

=head1 CONFIGURATION FILE

This script can read configuration files. Configuration files are in the format of L<IOD>, which is basically INI with some extra features.

By default, these names are searched for configuration filenames (can be changed using C<--config-path>): F</home/u1/.config/shcompgen.conf>, F</home/u1/shcompgen.conf>, or F</etc/shcompgen.conf>.

All found files will be read and merged.

To disable searching for configuration files, pass C<--no-config>.

To put configuration for a certain subcommand only, use a section name like C<[subcommand=NAME]> or C<[SOMESECTION subcommand=NAME]>.

You can put multiple profiles in a single file by using section names like C<[profile=SOMENAME]> or C<[SOMESECTION profile=SOMENAME]> or C<[subcommand=SUBCOMMAND_NAME profile=SOMENAME]> or C<[SOMESECTION subcommand=SUBCOMMAND_NAME profile=SOMENAME]>....

You can also put configuration for multiple programs inside a single file, and use filter C<program=NAME> in section names, e.g. C<[program=NAME ...]> or C<[SOMESECTION program=NAME]>. The section will then only be used when the reading program match...

You can also filter a section by environment variable using the filter C<env=CONDITION> in section names. For example if you only want a section to be read if a certain environment variable is true: C<[env=SOMEVAR ...]> or C<[SOMESECTION env=SOMEVAR ...

To load and configure plugins, you can use either the C<-plugins> parameter (e.g. C<< -plugins=DumpArgs >> or C<< -plugins=DumpArgs@before_validate_args >>), or use the C<[plugin=NAME ...]> sections, for example:

 [plugin=DumpArgs]
 -event=before_validate_args
 -prio=99
 
 [plugin=Foo]
 -event=after_validate_args
 arg1=val1
 arg2=val2

 

which is equivalent to setting C<< -plugins=-DumpArgs@before_validate_args@99,-Foo@after_validate_args,arg1,val1,arg2,val2 >>.

List of available configuration parameters:

=head2 Common for all subcommands

 format (see --format)
 log_level (see --log-level)
 naked_res (see --naked-res)
 shell (see --shell)

=head2 Configuration for subcommand detect-prog

 prog (see --prog)

=head2 Configuration for subcommand generate

 per_option (see --per-option)
 prog (see --prog)
 remove (see --remove)
 replace (see --replace)
 stdout (see --stdout)

=head2 Configuration for subcommand guess-shell


=head2 Configuration for subcommand init

 per_option (see --per-option)

=head2 Configuration for subcommand list

 detail (see --detail)
 per_option (see --per-option)

=head2 Configuration for subcommand remove

 per_option (see --per-option)
 prog (see --prog)

=head1 ENVIRONMENT

=head2 SHCOMPGEN_OPT

String. Specify additional command-line options.

=head1 FILES

=head2 /home/u1/.config/shcompgen.conf

=head2 /home/u1/shcompgen.conf

=head2 /etc/shcompgen.conf

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-shcompgen>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-shcompgen>.

=head1 SEE ALSO

L<Dist::Zilla::Plugin::GenShellCompletion>

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 CONTRIBUTING


To contribute, you can send patches by email/via RT, or send pull requests on
GitHub.

Most of the time, you don't need to build the distribution yourself. You can
simply modify the code, then test via:

 % prove -l

If you want to build the distribution (e.g. to try to install it locally on your
system), you can install L<Dist::Zilla>,
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,



( run in 0.384 second using v1.01-cache-2.11-cpan-39bf76dae61 )