The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

SUMMARY

Completion routines for Devel::Trepan

Subroutines

complete_token

Return an list of string, $complete_ary, which start out with String $prefix.

complete_token_filtered

Find all starting matches in Hash $aliases+that start with $prefix, but filter out any matches already in $expanded.

complete_token_filtered_with_next

Find all starting matches in hash $aliases that start with $prefix, but filter out any matches already in $expanded.

next_token

Find the next token in str string from start_pos. We return the token and the next blank position after the token or length($str) if this is the last token. Tokens are delimited by white space.

filename_list

filename_list is from Term::ReadLine::readline.pm:

For use in passing to completion_matches(), returns a list of filenames that begin with the given pattern. The user of this package can set $rl_completion_function to 'rl_filename_list' to restore the default of filename matching if they'd changed it earlier, either directly or via &rl_basic_commands.