increment $VERSION after 1.003027 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Completion.pm
index 1e2b09a..3782192 100644 (file)
@@ -1,8 +1,14 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Completion;
+# ABSTRACT: Extensible tab completion
+
+our $VERSION = '1.003028';
+
 use Devel::REPL::Plugin;
 use Scalar::Util 'weaken';
 use PPI;
-use namespace::clean -except => [ 'meta' ];
+use namespace::autoclean;
 
 has current_matches => (
    is => 'rw',
@@ -122,13 +128,17 @@ sub last_ppi_element {
 
 __END__
 
-=head1 NAME
+=pod
+
+=head1 NOTE
 
-Devel::REPL::Plugin::Completion - Extensible tab completion
+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> >>
 
 =cut
-