Re: BBEdit 10 - Upgrade vs new purchase?

2011-07-27 Thread Alex Satrapa
On 28/07/2011, at 08:21 , jsasaki23 wrote:

> Thanks for the license hint.  So now there's even less difference
> between upgrading and buying a fresh copy?

That depends on where you buy your "fresh" copy from. If you buy it direct from 
Bare Bones, there's no difference apart from filling out more forms. If you buy 
the "fresh" version from the MAS, you'll get a hobbled version.

Alex



smime.p7s
Description: S/MIME cryptographic signature


BBEdit Extras Wiki

2011-07-27 Thread Seth Dillingham
I haven't seen mention of this before, so maybe nobody else 
knows about it either...


There's a wiki with info about the various ways available for 
extending BBEdit (language modules, packages, scripts, etc.) here:




(I had nothing to do with the creation of this site, I was 
simply shown a link to it.)


Seth

--
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.

To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.

Follow @bbedit on Twitter: 


Re: BBEdit 10 - Upgrade vs new purchase?

2011-07-27 Thread jsasaki23
Thanks for the license hint.  So now there's even less difference
between upgrading and buying a fresh copy?

> On Jul 27, 5:02 pm, Alex Satrapa  wrote:
> > On 28 Jul 2011, at 05:01, jsasaki23 wrote:
> [...]
> > The serial number is available in "BBEdit / Licence…" so I'm not sure that 
> > this really counts as "hunting" :)
> >
> > Be aware that the version of BBEdit sold on the App Store doesn't handle 
> > "authenticated saves" or install the command line tools.
> >
> >  smime.p7s
> > 2KViewDownload

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


project's folders within collections no longer open after migration to 10.0

2011-07-27 Thread combi
I migrated a BBEdit project from 9.x to 10.0.

Now, in the project sidebar, folders that live within a collection no
longer expand and reveal the files within them. This is most
frustrating! I have to redrag each folder back to the correct
collection, and delete the old (non working) folder, to fix it. Rather
tedious.

Any ideas?

Thanks,

-C

P.S. I checked the file filter (magnifier button) at the bottom of the
project sidebar, and it's not the problem.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


modifying pretty print

2011-07-27 Thread bwy
Hi, any suggestions on a good path to take (which bbedit tool to use)
to create a modified version of "pretty print" formatting that I can
apply as needed to my html/php docs? v10.x

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: 100% CPU on .tex files

2011-07-27 Thread Fritz Anderson
[Originally sent to Mike L., but not to the list, as I'd intended. Mike says 
Bare Bones support is aware of the problem.]

On 26 Jul 2011, at 10:12 AM, Mike Loiterman wrote:

> After opening, wait a few seconds and then just typing some characters 
> anywhere in the document.  For me, BBEdit will Beachball and use ~15%-30% CPU.
> 
> I see this on a brand new MacBook Air with 10.7 and a older MacBook Pro with 
> 10.6.8.  Admittedly, they share the same BBEdit Application Support and 
> preference files.
> 
> Anyone else see this?

I see this was copied to me because I had said I hadn't seen the problem 
before. Now I have.

Additionally, BBEdit runs away with RAM, filling all available space. This 
freezes the app for up to half a minute. After the runaway, syntax coloring is 
strange (I've reported the details to Bare Bones support). You should report 
your experience to supp...@barebones.com; maybe your experience will give them 
the clue they need.

This sort of thing historically happened when a document had very long lines, 
and BBEdit got bogged down in soft wrapping and syntax coloring. The longest 
line in my most recent problem LaTeX file seems to be 756 characters, which 
doesn't seem unreasonable to me.

BBEdit 10 isn't completely unusable with this problem, but it's close.

— F

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Search and replace multiple combinations at once?

2011-07-27 Thread John Delacour

At 10:03 -0700 27/07/2011, jgold723 wrote:



I'm using BBEdit 8 (but willing to upgrade if necessary). I have a
series of search and replace strings that I need to perform on a
document. I'd like to build these once, then have BBEdit run them all
on the document. Can that be done? How?


The easiest way is to create a UNIX Filter (renamed Text Filter in BBE 10)

Here is a filter that will capitalize all a, e and o in the document. 
I have writen it in such a way that the whole text of the document is 
treated as a unit rather than read line by line


#!/usr/bin/perl
my $wholetext = "";
while (<>) {
  $wholetext .= $_
}
$_ = $wholetext;
# Substitutions:
s/a/A/g; #1
s/e/E/g; #2
s/o/O/g; #3
print;

JD


--
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.

To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.

Follow @bbedit on Twitter: 


Re: BBEdit 10 - Upgrade vs new purchase?

2011-07-27 Thread Alex Satrapa
On 28 Jul 2011, at 05:01, jsasaki23 wrote:

> Sorry, but I'm puzzled by a silly question: Since purchasing a new
> copy of BBEdit 10 and upgrading from BBEdit 9.6.3 cost the same ($40 -
> 0.01), is there any reason to upgrade vs buying a fresh copy?
> Upgrading is more work because it requires me to hunt for my serial
> number; buying a fresh copy doesn't.

The serial number is available in "BBEdit / Licence…" so I'm not sure that this 
really counts as "hunting" :)

Be aware that the version of BBEdit sold on the App Store doesn't handle 
"authenticated saves" or install the command line tools.



smime.p7s
Description: S/MIME cryptographic signature


Re: Search and replace multiple combinations at once?

2011-07-27 Thread Kendall Conrad
I believe Text Factories would be a good solution if it exists in
version 8. I started with version 9 so not sure if that feature
existed yet. I've used them for very similar situations to the one you
describe.



On Jul 27, 1:03 pm, jgold723  wrote:
> I'm using BBEdit 8 (but willing to upgrade if necessary). I have a
> series of search and replace strings that I need to perform on a
> document. I'd like to build these once, then have BBEdit run them all
> on the document. Can that be done? How?
>
> Thanks,
>
> John

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: OSX Lion and BBEdit Command Line Installer

2011-07-27 Thread François Schiettecatte
Command line tools are not available in the App Store version of BBEdit because 
of App Store restrictions but you can download them separately, see the last 
entry on the BBEdit FAQ:

http://www.barebones.com/store/macappstore.html

François

On Jul 26, 2011, at 4:13 PM, icel wrote:

> Hi,
> 
> I have just done a clean install of OSX Lion on my Macbook Pro 15"
> 2.2Ghz i7.  I bought BBEdit from the app store as it was convenient
> and presume the new one will be available shortly.  I have just tried
> install the Command Line tools to no avail.  I downloaded the package
> and followed installation instructions from:
> http://www.barebones.com/support/bbedit/
> 
> I have rebooted and tried re-installing but it is still not working.
> Any suggestions?
> 
> Many Thanks
> 
> -- 
> You received this message because you are subscribed to the 
> "BBEdit Talk" discussion group on Google Groups.
> To post to this group, send email to bbedit@googlegroups.com
> To unsubscribe from this group, send email to
> bbedit+unsubscr...@googlegroups.com
> For more options, visit this group at
> 
> If you have a feature request or would like to report a problem, 
> please email "supp...@barebones.com" rather than posting to the group.
> Follow @bbedit on Twitter: 

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Search and replace multiple combinations at once?

2011-07-27 Thread Steve Samuels
You can use AppleScript, maybe in Version 8 (I don't know), certainly
in 9.   I opened Script Editor, and recorded a search, then just
modified it for the subsequent searches. Be aware that Google's Mailer
will break the search lines. Everything from "replace..." to "--End"
is on one line.

-
tell application "BBEdit"
activate
-- This search was recorded

replace "alpha" using "beta" searching in text 1 of text document
"pi50.txt" options {search mode:grep, starting at top:true, wrap
around:false, backwards:false, case sensitive:false, match
words:false, extend selection:false}  -- End
.
-- Next search was just a copy & paste of the previous one
replace "beta" using "gamma" searching in text 1 of text document
"pi50.txt" options {search mode:grep, starting at top:true, wrap
around:false, backwards:false, case sensitive:false, match
words:false, extend selection:false} --End

end tell



On Jul 27, 1:03 pm, jgold723  wrote:
> I'm using BBEdit 8 (but willing to upgrade if necessary). I have a
> series of search and replace strings that I need to perform on a
> document. I'd like to build these once, then have BBEdit run them all
> on the document. Can that be done? How?
>
> Thanks,
>
> John

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Updated PeepOpen support

2011-07-27 Thread ascarter
Did you use the updated script or the original one by installing from 
PeepOpen?

This should fix it if you have it:

https://github.com/topfunky/PeepOpen-EditorSupport/tree/feature%2Fbbedit/PeepOpen-bbedit

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: BBEdit 10 Color Scheme Issues

2011-07-27 Thread Maarten Sneep

On 27 jul. 2011, at 01:05, maf675 wrote:

> 
> 
> On Jul 26, 12:55 pm, Maarten Sneep  wrote:
>> No it isn't. It is the way Apple handles colors:
>> 
>> http://developer.apple.com/library/mac/#documentation/Cocoa/Reference...
>> 
>> Maarten
> 
> What I meant was wrong was BBEdit's math...
> 
> For example, if I choose rgb slider values of 248, 248, 248.
> 
> Then 248 / 255 = 0.972549
> 
> So BBedit should store it as rgba(0.972549,0.972549,0.972549,1.00)
> 
> But BBedit is storing it as rgba(0.978330,0.978133,0.978337,1.00)
> 
> Note that not only are the values wrong, they are also all different
> from each other!!! Also note that when converted back by multiplying
> them by 255 and rounding to nearest whole numbers, you get rgb slider
> values of 249, 249, 249
> 
> So as of right now, I am having to manually do the math for each RGB
> value I want in my scheme, and type the correct numbers into the saved
> bbcolor scheme file in the BBEdit Application Support folder by hand,
> if I want my desired settings to be correct.

Ah, that makes more sense. This is probably something you ought to send to 
support.

Some things that might interfere with the handling of colors is colorsync. It 
might just happen that the colors are double-corrected.

Best,

Maarten

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Version 9

2011-07-27 Thread Steve Nicholson
On Jul 26, 2011, at 11:53 PM, crag wrote:

> Anyway I can download version 9?

http://www.lmgtfy.com/?q=bbedit+9+download

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Rename while in project panel

2011-07-27 Thread Eric Ishii Eckhardt
Hi Chris thanks for posting that. Very helpful. The only thing it
doesn't do is rename the file reference in the Project window.

So if I'm editing foo.html and I rename it with your script to new-
foo.html the file name changes (I can see it in Finder and at the top
of the BBEdit document) but the reference on the left stays as
foo.html

I've been poking around to see if that is automatable via the script
but I don't see that its possible.

- Eric



On Jul 27, 8:09 am, Christopher Stone 
wrote:
> On Jul 21, 2011, at 07:47, Rob Claisse wrote:> Am I missing some thing 
> obvious but I can see how to rename a file in the project panel? I'd expect 
> to down click on a file and it allow you to rename it or atleast a option 
> when you right click but can see anything. Also a pain to have to keep going 
> back to the finder.
>
> __
>
> Hey Rob,
>
> Some of your pain is pretty easily diminished.  Run this script via keyboard 
> shortcut from the BBEdit Scripts Menu to open a dialog for renaming the file 
> of the front text window.  Change the name, and it will rename the file in 
> the Finder.  You'll see this change reflected in the project file browser.
>
> --
> Best Regards,
> Chris
>
> __
>
> # ccs
> # 2011-07-27 : 07:00
> try
>   tell application "BBEdit"
>     tell front text window
>       set docFile to its file
>       if docFile ≠ missing value then
>         set docFile to docFile as alias
>         set AppleScript's text item delimiters to ":"
>         set docFileName to last text item of (docFile as text)
>         set newDocFileName to text returned of ¬
>           (display dialog "Enter New File Name:" default answer docFileName)
>       else
>         beep
>         return
>       end if
>     end tell
>   end tell
>
>   tell application "Finder"
>     set name of docFile to newDocFileName
>   end tell
>
> on error errMsg number errNum
>   set sep to "=="
>   set e to sep & return & "Error: " & errMsg & return & sep & return ¬
>     & "Error Number: " & errNum & return & sep
>   beep
>   display dialog e
> end try

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


BBEdit 10 - Upgrade vs new purchase?

2011-07-27 Thread jsasaki23
Sorry, but I'm puzzled by a silly question: Since purchasing a new
copy of BBEdit 10 and upgrading from BBEdit 9.6.3 cost the same ($40 -
0.01), is there any reason to upgrade vs buying a fresh copy?
Upgrading is more work because it requires me to hunt for my serial
number; buying a fresh copy doesn't.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Search and replace multiple combinations at once?

2011-07-27 Thread jgold723
I'm using BBEdit 8 (but willing to upgrade if necessary). I have a
series of search and replace strings that I need to perform on a
document. I'd like to build these once, then have BBEdit run them all
on the document. Can that be done? How?

Thanks,

John

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Updated PeepOpen support

2011-07-27 Thread BarbarianGeek
Completely different issue with the script which I'm guessing is my
machine but hopefully there is a known answer:
With or without a project file, I get an error of:
  Finder got an error: Can’t get URL of file
\"OctoPirate:Users:Me:Sites:code-yellow:\"." number -1728 from URL of
file "OctoPirate:Users:Me:Sites:code-yellow:"

Error -1728 is, I believe, "file doesn't exist" or "can't get
reference".
Watching the event log, the system never evaluates to true the (on
disk of _projectDocument) condition in either case.

Any suggestions?

On Jul 25, 2:20 am, ascarter  wrote:
> I'm sure I tested that case but I'll back and look at it again. Thanks for
> narrowing it down.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Rod Buchanan
On Jul 26, 2011, at 8:23 PM, Watts Martin wrote:

> Kendall Conrad wrote:
> 
>> I don't have BBEdit 10, but for 9, you go to Languages, then Options
>> to get to those settings.
> 
> Yep, there's an equivalent in BBEdit 10 (it's shuffled a bit), but that's not 
> actually going to help with my use case: I need some HTML files to have tab 
> width 4 and some to have tab width 2. I was hoping there was a way to set 
> that for a *document,* not a language type, and have that setting be "sticky" 
> (saved in the document's resource fork, or whatever).
> 
> As near as I can tell, there's no way to adjust the tab width for a document 
> at *all* -- you can only change the editor default and the per-language 
> setting. I'm surprised, thinking about it, that tab width isn't adjustable 
> via the per-document Text Options. (And a little surprised those aren't saved 
> with documents.)

Look at View -> Text Display -> Show Fonts.

-- 
Rod

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: What am I missing in BBEdit 10?

2011-07-27 Thread Marc


On 22 jul, 17:21, Steve Kalkwarf  wrote:


>
> As written, and tested during the beta cycle, dragging an image into an HTML 
> document inserts complete and correct markup:
>
>  alt="Fabulous Dog.jpg" width="1280" height="960">
>
> If you are seeing different results, there is either a bug in the software, 
> or a mis-aligned expectation.
>

> Steve

I'm having the same problems with img insertion as NotinUse is
reporting.
I can drag an image into the html file, but nothing happens at all. No
dialog pops up.
The only way to get an image into the file is by using the menu
choice.
The dialog that pops up, doesn't have anything filled out
automatically and when I select a local file it gets inserted with the
full path to the file on my server.
I just want relative filepaths!!

I just reverted to BBEdit 9.3  as 10 is just twice as much work.
Waiting for the fix.

Marc.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Rod Buchanan
On Jul 26, 2011, at 8:23 PM, Watts Martin wrote:

> Kendall Conrad wrote:
> 
>> I don't have BBEdit 10, but for 9, you go to Languages, then Options
>> to get to those settings.
> 
> Yep, there's an equivalent in BBEdit 10 (it's shuffled a bit), but that's not 
> actually going to help with my use case: I need some HTML files to have tab 
> width 4 and some to have tab width 2. I was hoping there was a way to set 
> that for a *document,* not a language type, and have that setting be "sticky" 
> (saved in the document's resource fork, or whatever).
> 
> As near as I can tell, there's no way to adjust the tab width for a document 
> at *all* -- you can only change the editor default and the per-language 
> setting. I'm surprised, thinking about it, that tab width isn't adjustable 
> via the per-document Text Options. (And a little surprised those aren't saved 
> with documents.)

Look at View -> Text Display -> Show Fonts.

-- 
Rod

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Managing WebObjects project in BBEdit?

2011-07-27 Thread Jon
As Apple no longer supports working with WebObjects projects in Xcode,
I'm looking for alternatives for use on OSX 10.6.8. I guess Eclipse
with WOLips is the most obvious option, but I also wonder if BBEdit
could be used. I understand that WOLips has quite a few features that
one may have to do without in BBEdit, but I would be interested in
hearing from anyone who has used BBEdit as an "IDE" for WebObjects
(Java) projects.

/Jon

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Tips and Tricks?

2011-07-27 Thread Webmaster

On Jul 27, 2011, at 5:13 PM, TJ Luoma wrote:

> * One of the features that I really love is the "Multiple File Search"
> where I can look for a certain search term in a wide range of files.

> * One thing I didn't know about for a long time was that if you hold
> down the "Option" key while looking at the "File" menu, some of the
> options will change. (Which is why I didn't think BBEdit had a way to
> "Save All" for a long time :-/

Hello. Being a non-programmer myself, as well as not being a frequent user of 
the OS X Terminal, there are no doubt many features of BBEdit which I am not 
aware of, never use, and don't even know how to use. Understanding grep is 
difficult enough for me. Of course, the same could be said for OS X in general. 
I am really a basic user when it comes to OS X, and the vast majority of its 
bells and whistles remain unused by me as well.

I would concur though that as a long-time web designer, the multiple file 
search is one of the features which is most often used by me, particularly when 
I have to simultaneously make global changes to hundreds or thousands of html 
files on one of the sites that I run.

This goes hand-in-hand with the text factory feature, which I more often than 
not use in conjunction with the tidy feature. It saves me so much time, and 
catches html coding errors that I may not be aware of.

Thanks for the option key hint. I was totally unaware of it until now.

WW

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Version 9

2011-07-27 Thread crag
Anyway I can download version 9?

Thanks..

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: BBEdit 10 Color Scheme Issues

2011-07-27 Thread maf675


On Jul 26, 12:55 pm, Maarten Sneep  wrote:
> No it isn't. It is the way Apple handles colors:
>
> http://developer.apple.com/library/mac/#documentation/Cocoa/Reference...
>
> Maarten

What I meant was wrong was BBEdit's math...

For example, if I choose rgb slider values of 248, 248, 248.

Then 248 / 255 = 0.972549

So BBedit should store it as rgba(0.972549,0.972549,0.972549,1.00)

But BBedit is storing it as rgba(0.978330,0.978133,0.978337,1.00)

Note that not only are the values wrong, they are also all different
from each other!!! Also note that when converted back by multiplying
them by 255 and rounding to nearest whole numbers, you get rgb slider
values of 249, 249, 249

So as of right now, I am having to manually do the math for each RGB
value I want in my scheme, and type the correct numbers into the saved
bbcolor scheme file in the BBEdit Application Support folder by hand,
if I want my desired settings to be correct.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: How do I change the "Currently Open Documents" sort order?

2011-07-27 Thread pr10n
Hmm... I've just noticed that the navigation ordering can get a little
mixed up if there are multiple files of the same name.

On Jul 25, 8:48 pm, pr10n  wrote:
> I'm not at all surprised. I have preferences that have been migrated
> over or manually reinserted stemming back to version 6.
>
> It works wonderfully now. Thank you very much.
>
> On Jul 25, 8:05 pm, Rich Siegel  wrote:
>
>
>
>
>
>
>
> > On Monday, July 25, 2011, pr10n  wrote:
> > > I can't for the life of me figure out how to get the "Currently Open
> > > Documents" to behave like the old "Documents Drawer" in respect to
> > > navigation ordering.
>
> > > I'm trying to duplicate the following preference from 9.x:
>
> > > Documents & Drawer
> > > Next Document and Previous Document navigate in:
> > > [x] Display order
> > > [ ] History order
>
> > That should have been migrated, but apparently was not. Try:
>
> >     defaults write com.barebones.bbedit SurfNextPreviousInDrawerOrder -bool 
> > YES
>
> > R.
> > --
> > Rich Siegel                                 Bare Bones Software, Inc.
> >                       
>
> > Someday I'll look back on all this and laugh... until they sedate me.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


OSX Lion and BBEdit Command Line Installer

2011-07-27 Thread icel
Hi,

I have just done a clean install of OSX Lion on my Macbook Pro 15"
2.2Ghz i7.  I bought BBEdit from the app store as it was convenient
and presume the new one will be available shortly.  I have just tried
install the Command Line tools to no avail.  I downloaded the package
and followed installation instructions from:
http://www.barebones.com/support/bbedit/

I have rebooted and tried re-installing but it is still not working.
Any suggestions?

Many Thanks

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Watts Martin

David Kelly wrote:


In my old age I've come to prefer hard spaces so that nobody comes
along and messes up my formatting just because they used a different tab
value.


This is what eventually converted me to the "spaces" side of the "spaces 
vs. tabs" argument. :)


(That, and Python coding -- while I know tabs are allowed, they seem to 
be strongly frowned on in terms of coding style, probably because 
messing up formatting due to differing tab values will actually break 
Python code, not just make it look ugly!)


--
Watts Martin 



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Per document tab widths

2011-07-27 Thread David Kelly
On Wed, Jul 27, 2011 at 12:45:58PM -0600, Doug McNutt wrote:
> 
> I even have a preset resource file into which I can redirect a data
> fork that is an assembly language listing for a 68HC11 microprocessor.
> Variable width tabs are really nice for that. I can even word wrap
> comments into new lines that begin at the rightmost tab.

Nice, but most assemblers are soft on the location of the opcode field
so long as there is at least one whitespace leading in. Two tabs, or any
number of spaces is accepted. Followed by at least one whitespace to the
arguments, and comments start at first semicolon or after legal
arguments.

Has been a while but believe I last used 2 tabs at 8 spaces for the
label field, one for opcode, one more to the arguments, and 2 more to
comments.

In in my old age I've come to prefer hard spaces so that nobody comes
along and messes up my formatting just because they used a different tab
value.

-- 
David Kelly N4HHE, dke...@hiwaay.net

Whom computers would destroy, they must first drive mad.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Doug McNutt
At 13:13 -0500 7/27/11, David Kelly wrote:
>On Wed, Jul 27, 2011 at 12:04:32PM -0600, Doug McNutt wrote:
>> 
>> Just in case anyone at Bare Bones cares:
>> 
>> While you're making tab width adjustable on a per file basis it would
>> really be great if you could arrange for tab stops as in a real
>> typewriter.  I am continually frustrated with columnar data that
>> demands a wide column on the left side - full names for example -
>> followed by a couple of small width columns like date and $. Multiple
>> tab characters cannot be used because the final destination of the
>> file won't accept them.
>> 
>> The alternative is a full fledged spreadsheet but I really don't need
>> that just to look at, yeah and modify, the data.
>
>Sounds as if you are asking to further blur the difference between a
>text editor and a word processor.
>
>Am not sure if Nisus still behaves the way it originally did, but it was
>a word processor that left the data fork as pure text while putting all
>formatting metadata in the resource fork. Originators of QUED/M, which
>for me was replaced by BBEdit.

I still use Nisus  5 or so on this OS 9 box.  As of OS 10 Nisus became just 
another markup based word processor. Really good for right to left Arabic with 
included left to right Arabic numbers..

I even have a preset resource file into which I can redirect a data fork that 
is an assembly language listing for a 68HC11 microprocessor. Variable width 
tabs are really nice for that. I can even word wrap comments into new lines 
that begin at the rightmost tab.

I'd really rather use BBEdit on Apple's OS 10. (Which sort of keeps this on 
topic.)
-- 

   Fe++
//  \
Fe++  Fe++
  |   ||
Fe++  Fe++
   \\/
   Fe++

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread David Kelly
On Wed, Jul 27, 2011 at 12:04:32PM -0600, Doug McNutt wrote:
> 
> Just in case anyone at Bare Bones cares:
> 
> While you're making tab width adjustable on a per file basis it would
> really be great if you could arrange for tab stops as in a real
> typewriter.  I am continually frustrated with columnar data that
> demands a wide column on the left side - full names for example -
> followed by a couple of small width columns like date and $. Multiple
> tab characters cannot be used because the final destination of the
> file won't accept them.
> 
> The alternative is a full fledged spreadsheet but I really don't need
> that just to look at, yeah and modify, the data.

Sounds as if you are asking to further blur the difference between a
text editor and a word processor.

Am not sure if Nisus still behaves the way it originally did, but it was
a word processor that left the data fork as pure text while putting all
formatting metadata in the resource fork. Originators of QUED/M, which
for me was replaced by BBEdit.

Looks like QUED/M is gone: http://www.nisus.com/

-- 
David Kelly N4HHE, dke...@hiwaay.net

Whom computers would destroy, they must first drive mad.

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Doug McNutt
At 10:40 -0700 7/27/11, Watts Martin wrote:
>Bruce Van Allen wrote, and I snipped:
>
>I suppose to be precise I should have said there appeared to be no UI control 
>to adjust the tab width on a document-level basis.


Just in case anyone at Bare Bones cares:

While you're making tab width adjustable on a per file basis it would really be 
great if you could arrange for tab stops as in a real typewriter.  I am 
continually frustrated with columnar data that demands a wide column on the 
left side - full names for example - followed by a couple of small width 
columns like date and $. Multiple tab characters cannot be used because the 
final destination of the file won't accept them.

The alternative is a full fledged spreadsheet but I really don't need that just 
to look at, yeah and modify, the data.

-- 

--> From the U S of A, the only socialist country that refuses to admit it. <--

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Per document tab widths

2011-07-27 Thread Watts Martin

Bruce Van Allen wrote:


On 2011-07-26, Watts Martin wrote:


As near as I can tell, there's no way to adjust the tab width for a
document at *all* -- you can only change the editor default and the
per-language setting. I'm surprised, thinking about it, that tab width
isn't adjustable via the per-document Text Options. (And a little
surprised those aren't saved with documents.)


What? Those things work over here (BBEdit 10, OS X 10.7, and worked for
years).

I use this applescript saved in scripts folder, with Control-Tab set as
keyboard command:


That will certainly work; thank you.

I suppose to be precise I should have said there appeared to be no UI 
control to adjust the tab width on a document-level basis. It's great 
that BBEdit has the scripting support that it does, but I'm also bemused 
at times by how often scripting seems to be the *only* way to do 
something that seems relatively trivial, like set tab widths for the 
current document. :)


In any case, this is reinforcing my earlier thought that there really 
needs to be a BBEdit "Tips & Tricks" wiki, that allows attachments for 
scripts, snippets (and now packages).


--
Watts Martin 



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Per document tab widths

2011-07-27 Thread Bruce Van Allen

On 2011-07-26, Watts Martin wrote:

As near as I can tell, there's no way to adjust the tab width 
for a document at *all* -- you can only change the editor 
default and the per-language setting. I'm surprised, thinking 
about it, that tab width isn't adjustable via the per-document 
Text Options. (And a little surprised those aren't saved with documents.)


What? Those things work over here (BBEdit 10, OS X 10.7, and 
worked for years).


I use this applescript saved in scripts folder, with Control-Tab 
set as keyboard command:


tell application "BBEdit"
set tabW to tab width of text window 1
if tabW > 64 then
set tabW to 4
else
set tabW to tabW + 12
end if
set tab width of text window 1 to tabW
end tell


This allows cycling through increasingly wider tab separations, 
per document. Adjust your increment as desired (that's the '+ 
12'), as well as the maximum (64 here) before it reverts to 
minimum. Tab width is sticky, so a file keeps the last width I set.


HTH.



   - Bruce

_bruce__van_allen__santa_cruz_ca_

--
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.

To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.

Follow @bbedit on Twitter: 


Re: UnityScript Support and other Feature Requests

2011-07-27 Thread RobS
Thank you Rich -- that is exactly what I wanted. My demo days are over; I'll 
be buying the upgrade now. (Not that those two thoughts are connected in any 
way, of course. ;-) )

Rob

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Rename while in project panel

2011-07-27 Thread Christopher Stone
On Jul 21, 2011, at 07:47, Rob Claisse wrote:
> Am I missing some thing obvious but I can see how to rename a file in the 
> project panel? I'd expect to down click on a file and it allow you to rename 
> it or atleast a option when you right click but can see anything. Also a pain 
> to have to keep going back to the finder.
__

Hey Rob,

Some of your pain is pretty easily diminished.  Run this script via keyboard 
shortcut from the BBEdit Scripts Menu to open a dialog for renaming the file of 
the front text window.  Change the name, and it will rename the file in the 
Finder.  You'll see this change reflected in the project file browser.

--
Best Regards,
Chris

__


# ccs
# 2011-07-27 : 07:00
try
  tell application "BBEdit"
tell front text window
  set docFile to its file
  if docFile ≠ missing value then
set docFile to docFile as alias
set AppleScript's text item delimiters to ":"
set docFileName to last text item of (docFile as text)
set newDocFileName to text returned of ¬
  (display dialog "Enter New File Name:" default answer docFileName)
  else
beep
return
  end if
end tell
  end tell
  
  tell application "Finder"
set name of docFile to newDocFileName
  end tell
  
on error errMsg number errNum
  set sep to "=="
  set e to sep & return & "Error: " & errMsg & return & sep & return ¬
& "Error Number: " & errNum & return & sep
  beep
  display dialog e
end try

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: Sliding BBEdit 10 preferences

2011-07-27 Thread Christopher Stone
On Jul 24, 2011, at 02:43, John Delacour wrote:
> At 00:29 -0700 24/07/2011, Shai wrote:
>> The new preference window in BBEdit 10 is proving to be annoying with its 
>> constant sliding up and down [...] you need to scroll to find the category 
>> you're interested in.  Does anyone else feel the same?
> 
> Yes, very much so.  I'm sure most BBEdit users are interested in function and 
> content and have an aversion to these distracting Appleisms.

__

Ditto in the strongest possible terms.

--
Best Regards,
Chris

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Re: opening a separate window from within a project window

2011-07-27 Thread Christopher Stone
On Jul 21, 2011, at 08:22, Charlie Garrison wrote:
> On 20/07/11 at 8:54 PM -0700, Les  wrote:
> 
>> Is there a way to open an already open file in the project window in a 
>> separate window apart from the project window?
> 
> Right click the file in the "Currently Open Documents" pane and select "Move 
> to New Window". 

__

Let's not forget Command-Option-O.

--
Best Regards,
Chris

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 


Tips and Tricks?

2011-07-27 Thread TJ Luoma
Hey folks

I've been using BBEdit for years but don't think I'm doing everything
I can with it.

I'm trying to learn more of what BBEdit can do, and I was wondering if
some of you might be willing to help.

If you were trying to impress someone who was new to the Mac with what
BBEdit can do and why you use it as your text editor, can you give me
some examples of the features you'd show off?

Here are 3 examples from my own usage:

* One of the reasons that I chose BBEdit was that I needed to be able
to connect to an (S)FTP server and edit files, and I wanted an editor
that could do that.

* One of the features that I really love is the "Multiple File Search"
where I can look for a certain search term in a wide range of files.
Today I used it to file all files which referenced a given folder
(which I had renamed).  So in Terminal, I used this:

 bbedit --new-window `fgrep -l OLDNAME *`

which opened all of the files which include "OLDNAME" in a new BBEdit
window. Then I used multi-file search to replace OLDNAME with NEWNAME,
and it even saved all of the files for me automatically so I didn't
have to save them all manually.

* One thing I didn't know about for a long time was that if you hold
down the "Option" key while looking at the "File" menu, some of the
options will change. (Which is why I didn't think BBEdit had a way to
"Save All" for a long time :-/

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to bbedit@googlegroups.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: