On 10:56 AM 3/2/01 "Scott R. Godin" <[EMAIL PROTECTED]> wrote:
> I'd really love the ability to add plug-in capability to the internal
> editor ala perl scripts or AppleScripts. In fact I'd also love to be
> able to drop perl scripts into BBEdit's scripts menu to do things
> to/with the text too :D
You can do that in the full version with perl filters. They can operate
on the selected text.
For example, a line numbering filter:
#!perl -w
my $i = 0;
while(<>)
{
$i++;
printf("%4d: $_",$i);
}
--
Jim Correia Bare Bones Software, Inc.
[EMAIL PROTECTED] <http://web.barebones.com>