whitespace fixes
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Completion.pm
index 1e2b09a..de8b5fc 100644 (file)
@@ -1,8 +1,11 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Completion;
+
 use Devel::REPL::Plugin;
 use Scalar::Util 'weaken';
 use PPI;
-use namespace::clean -except => [ 'meta' ];
+use namespace::autoclean;
 
 has current_matches => (
    is => 'rw',
@@ -126,6 +129,13 @@ __END__
 
 Devel::REPL::Plugin::Completion - Extensible tab completion
 
+=head1 NOTE
+
+By default, the Completion plugin explicitly does I<not> use the Gnu readline
+or Term::ReadLine::Perl fallback filename completion.
+
+Set the attribute C<do_readline_filename_completion> to 1 to enable this feature.
+
 =head1 AUTHOR
 
 Shawn M Moore, C<< <sartak at gmail dot com> >>