NAME
    Complete::Util - General completion routines

VERSION
    This document describes version 0.12 of Complete::Util (from Perl
    distribution Complete-Util), released on 2014-07-02.

DESCRIPTION
FUNCTIONS
  complete_array_elem(%args) -> array
    Complete from array.

    Arguments ('*' denotes required arguments):

    *   array* => *array*

    *   ci => *bool* (default: 0)

    *   word => *str* (default: "")

    Return value:

  complete_env(%args) -> array
    Complete from environment variables.

    On Windows, environment variable names are all converted to uppercase.
    You can use case-insensitive option ("ci") to match against original
    casing.

    Arguments ('*' denotes required arguments):

    *   ci => *bool* (default: 0)

    *   word => *str* (default: "")

    Return value:

  complete_file(%args) -> array
    Complete file and directory from local filesystem.

    Arguments ('*' denotes required arguments):

    *   dir => *bool* (default: 1)

        Whether to include directory.

    *   file => *bool* (default: 1)

        Whether to include file.

    *   word => *str* (default: "")

    Return value:

  complete_hash_key(%args) -> array
    Complete from hash keys.

    Arguments ('*' denotes required arguments):

    *   ci => *bool* (default: 0)

    *   hash* => *hash*

    *   word => *str* (default: "")

    Return value:

  complete_program(%args) -> array
    Complete program name found in PATH.

    Windows is supported, on Windows PATH will be split using /;/ instead of
    /:/.

    Arguments ('*' denotes required arguments):

    *   word => *str* (default: "")

    Return value:

SEE ALSO
    Complete

    If you want to do bash tab completion with Perl, take a look at
    Complete::Bash and Complete::BashGen.

    Other "Complete::*" modules.

HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/Complete-Util>.

SOURCE
    Source repository is at
    <https://github.com/sharyanto/perl-Complete-Util>.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=Complete-Util>

    When submitting a bug or request, please include a test-file or a patch
    to an existing test-file that illustrates the bug or desired feature.

AUTHOR
    Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2014 by Steven Haryanto.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.

