BBedit 10+ perlish menu, how to?

2015-06-19 Thread alessandro bonzi
I've been using very old version of bbedit and the PERL scripts used to smoothly run elsewhere with a sample code (just an example) like: #!/usr/bin/perl -w use strict; my %seen; while (<>) { chomp; $_ = lc $_; s/\b(\w)/\u$1/g; $seen{$_}++; } foreach (sort keys %seen) { print $_, "\n"; }

BBE 11.1.1: Text completion causes lag/delay...

2015-06-19 Thread Whit
I was thrilled to realize that BBEdit has code completion abilities (for awhile now, apparently), but in practice I'm finding it painful to use because it keeps "thinking" for a few seconds before showing me the options, even with the text completion delay set to 0. For example, if I type this

[ANN] BBEdit 11.1.2 (3735) pre-release

2015-06-19 Thread Rich Siegel
Good { morning, afternoon, evening }, We're working on an update to BBEdit 11 which will add some new features and address a few recently reported issues. Note that this is a _pre-release_ version. The intent is to fix bugs and address areas of improvement based on what our customers have re

Re: BBedit 10+ perlish menu, how to?

2015-06-19 Thread Christopher Stone
On Jun 19, 2015, at 06:35, alessandro bonzi wrote: > I've been using very old version of bbedit and the PERL scripts used to > smoothly run elsewhere with a sample code (just an example) like: __ Hey Alessandro, That would be a