summaryrefslogtreecommitdiffstats
path: root/lib/App/REPL/Plugin/ReadLine.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/App/REPL/Plugin/ReadLine.pm')
-rw-r--r--lib/App/REPL/Plugin/ReadLine.pm25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/App/REPL/Plugin/ReadLine.pm b/lib/App/REPL/Plugin/ReadLine.pm
new file mode 100644
index 0000000..f2fe847
--- /dev/null
+++ b/lib/App/REPL/Plugin/ReadLine.pm
@@ -0,0 +1,25 @@
+package App::REPL::Plugin::ReadLine;
+use strict;
+use warnings;
+
+use base 'App::REPL::Plugin';
+
+use Term::ReadLine;
+
+sub new {
+ my $class = shift;
+
+ my $self = $class->SUPER::new(@_);
+ $self->{term} = Term::ReadLine->new('App::REPL');
+
+ return $self;
+}
+
+sub read_line {
+ my $self = shift;
+ my ($next, $prompt) = @_;
+
+ return $self->{term}->readline($prompt);
+}
+
+1;