minix/dist/nvi/perl_api/nviperl.pod
Lionel Sambuc 3e1db26a5a Termcap update, replacing elvis by nvi.
Removing elvis, importing nvi, ctags, updating libedit.

Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
2013-01-24 07:44:38 +01:00

44 lines
1,001 B
Plaintext

=head1 NAME
nviperl - nvi with embedded perl
=head1 SYNOPSIS
:perl require 'wc.pl'
:perl wc
:,$perldo $_=reverse($_)
=head1 DESCRIPTION
nvi with embedded perl allows you to run perl commands from within nvi.
Two additional commands are made available when you enable the perl
interpreter:
=over 8
=item * perl cmd
The perl command passes the specified commands to the perl interpreter.
The C<$VI::ScreenId>, C<$VI::StartLine> and C<$VI::StopLine> are set.
To find out how to maniplulate the nvi screens, see L<VI>.
=item * perldo cmd
The perldo command runs the specified commands on each line of the range
(every line of the file if no range specified). Before running the
command the line is copied into $_. If the command returns a true value
the line is replaced by the new value of $_.
The perldo commando does B<not> set the C<VI> variables. (If you think
this is a bad idea, tell me.)
=back
=head1 SEE ALSO
L<VI>
=head1 AUTHOR
Sven Verdoolaege <skimo@kotnet.org>