From: Chris Marshall Date: Sun, 13 Jun 2010 18:21:34 +0000 (-0400) Subject: Add Completion docs re filename expansion default X-Git-Tag: v1.003015~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=1a00e38d3366bfa83804a7889161f2201f05ed24 Add Completion docs re filename expansion default Since the fact that the Completion plugin *disables* an already on feature, added a note to that effect. The current behavior is: no Completion plugin loaded then you'll get the Term::ReadLine default of filename expansion (unless disabled at the Term::ReadLine level), and with Completion plugin loaded any fallback Term::ReadLine expansion will not happen. To use Term::ReadLine completion again, just set the do_readline_filename_completion attribute to 1. --- diff --git a/lib/Devel/REPL/Plugin/Completion.pm b/lib/Devel/REPL/Plugin/Completion.pm index 1e2b09a..b1b4e99 100644 --- a/lib/Devel/REPL/Plugin/Completion.pm +++ b/lib/Devel/REPL/Plugin/Completion.pm @@ -126,6 +126,13 @@ __END__ Devel::REPL::Plugin::Completion - Extensible tab completion +=head1 NOTE + +By default, the Completion plugin explicitly does I use the Gnu readline +or Term::ReadLine::Perl fallback filename completion. + +Set the attribute C to 1 to enable this feature. + =head1 AUTHOR Shawn M Moore, C<< >>