• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Term/ReadLine/H22-Nov-2004-3,5041,706

t/H22-Nov-2004-401335

Build.PLH A D22-Nov-2004443 2018

ChangesH A D22-Nov-20042.8 KiB9168

MANIFESTH A D22-Nov-2004304 1716

META.ymlH A D22-Nov-2004859 3534

Makefile.PLH A D22-Nov-20041.1 KiB3222

READMEH A D22-Nov-20041 KiB3422

example.plH A D22-Nov-20041.4 KiB7039

README

1Term-ReadLine-Zoid 0.07
2=======================
3
4ABOUT
5
6  This package provides a set of modules that form an interactive input buffer
7  written in plain perl with minimal dependencies. It features almost all
8  key-bindings described in the posix spec for the sh(1) utility with some
9  extensions like multiline editing; this includes a vi-command mode with a
10  save-buffer (for copy-pasting) and an undo-stack.
11
12  It is compatible with the Term::ReadLine interface, so it
13  can be used with perl programs using this interface.
14
15DEPENDENCIES
16
17  The only real dependencies for this package are Term::ReadKey and AutoLoader
18  which are available from cpan.
19
20  One function in the vi command mode needs File::Temp, but as long as you don't
21  use this function you don't need the module.
22
23  You might also want to consider to install Env::PS1 if you want a fancy prompt.
24
25INSTALL
26
27  Try something like:
28
29    $ perl Build.PL
30    $ ./Build test
31    $ ./Build install
32
33  See the Module::Build documentation for advanced build options.
34