Re: BBEdit 10.5 (3215) pre-release

2012-10-01 Thread LuKreme

On 30 Sep 2012, at 20:00 , Rich Siegel wrote:

 x-klingon

Oooo! Does anyone have a good Klingon font? Or a bad Klingon font?

-- 
Remember -- that which does not kill us can only make us stronger.
And that which *does* kill us leaves us *dead*!

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: BBEdit 10.5 (3215) pre-release

2012-10-01 Thread LuKreme
On 30 Sep 2012, at 20:00 , Rich Siegel wrote:
 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 reported. 

I don't see any mention of being able to specify the path to the backup file 
location. In order to have backups we have to have a folder or alias at 
$HOME/Documents/BBEdit Backups still? Or did I miss an advanced command 
somewhere along the line?

-- 
All I know is that using the strap makes me feel like a hot woman in
sunglasses. :-) ~jeffcarlson

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: Grep pattern for multi line /* ... */ blocks

2012-10-01 Thread kt
Thanks Kendall I'll check out those compressors

I tried the grep, but it matched the entire contents of the file. There 
were only 2 lines left after it was done. 

I'll try tweaking it a bit more.

Ken

On Sunday, September 30, 2012 3:15:05 PM UTC-4, Kendall Conrad wrote:

 One indirect solution:
 There's tools for compressing JavaScript files (minifiers). These strip 
 comments and remove all unnecessary white space, which results in much 
 smaller files. I use YUI Compressor for my JS and CSS files saving to 
 -min.js file names. This might be the better approach in the long run if 
 you're after getting smaller files. The comments can help later when 
 reworking the code so it's good to keep them around for development.

 Examples:
 http://jscompress.com/
 http://fmarcia.info/jsmin/test.html
 http://www.crockford.com/javascript/jsmin.html
 http://developer.yahoo.com/yui/compressor/

 One direct solution:
 Find: (?s)\/\*.*\*\/\r

 The (?s) lets the . match newlines.

 -Kendall

 On Sunday, September 30, 2012 1:55:26 PM UTC-4, kt wrote:

 Hi

 I've been futzing around with grep for nearly an hour and can't figure 
 out how to grep multi-line /* ... */ blocks. I have a large Javascript 
 source file with tons of single and multi line comments and I want to strip 
 them all out to reduce file size. I got the single line grep working 
 (\r//[^\r]+) but I'm stumped on the multi line version. Anyone help me out?

 Thanks in advance

 Ken



-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: Grep pattern for multi line /* ... */ blocks

2012-10-01 Thread Bruce Van Allen

On 9/30/12 at 1:05 PM, fredsays...@gmail.com (kt) wrote:


Thanks Kendall I'll check out those compressors

I tried the grep, but it matched the entire contents of the 
file. There were only 2 lines left after it was done.

I'll try tweaking it a bit more.


One direct solution:
Find: (?s)\/\*.*\*\/\r

The (?s) lets the . match newlines.


Except that it matches from the first instance of /* all the 
way to the last instance of */. It would appear to work fine 
if there was only one /* ... */ enclosed comment in the text 
you're searching.


The pattern needs to use non-greedy matching:

Find: (?s)\/\*.*?\*\/\r

The second question mark is part of the sub-expression .*?. 
This means match zero or more of ANY character -- including 
newlines, because of the (?s) invocation -- until the VERY NEXT 
match of the next thing in the pattern, which is an escaped 
asterisk \*.


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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: [ANN] BBEdit 10.5 (3215) pre-release

2012-10-01 Thread Rod Buchanan
On Sep 30, 2012, at 9:00 PM, Rich Siegel wrote:

 Good { morning, afternoon, evening },
 
 We've been busy. :-) A new version is in the works, with a whole bunch of new 
 features, refinements, and improvements. We're happy to make a pre-release 
 build available to the list, so that you have a little extra time to play 
 with it before the rest of the world gets hold of the goodies. :-)

I installed this version and lost the CVS option in the menubar.  Anyone else 
seen this and found a fix before I notify support?

Thanks,

-- 
Rod Buchanan

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: [ANN] BBEdit 10.5 (3215) pre-release

2012-10-01 Thread Brian Frick
As it says in the docs accompanying Rich's notice:  CVS has been removed.
--
Brian Frick
brianfr...@gmail.com



On Oct 1, 2012, at 10:32 AM, Rod Buchanan rodb.i...@gmail.com wrote:

 On Sep 30, 2012, at 9:00 PM, Rich Siegel wrote:
 
 Good { morning, afternoon, evening },
 
 We've been busy. :-) A new version is in the works, with a whole bunch of 
 new features, refinements, and improvements. We're happy to make a 
 pre-release build available to the list, so that you have a little extra 
 time to play with it before the rest of the world gets hold of the goodies. 
 :-)
 
 I installed this version and lost the CVS option in the menubar.  Anyone else 
 seen this and found a fix before I notify support?
 
 Thanks,
 
 -- 
 Rod Buchanan
 
 -- 
 -- 
 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
 http://groups.google.com/group/bbedit?hl=en
 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: http://www.twitter.com/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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: [ANN] BBEdit 10.5 (3215) pre-release

2012-10-01 Thread Rod Buchanan
On Oct 1, 2012, at 10:33 AM, Brian Frick wrote:

 As it says in the docs accompanying Rich's notice:  CVS has been removed.

Thanks.  I hadn't read that far yet. :(

(This sucks big time by the way.  We have a ton of code in CVS.)

-- 
Rod Buchanan

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





OK, this is odd

2012-10-01 Thread LuKreme
I installed BBEdit 10.5 on my laptop to look at it, then removed it and put 
back 10.1.2 (still running 10.5 on my desktop).

Before installing 10.5 when I was editing a file and I pressed 
option-command-‘, it would rewrap the current paragraph, and ONLY the current 
paragraph to 72 characters. It did this without bringing up a dialog/sheet.

Now, it doesn’t do that, and selecting “Rewrap quoted text” rewraps the entire 
file, including the news headers and the signature, essentially breaking the 
file.  I can select the entire paragraph and rewrap it, but that brings up a 
sheet to set the various options, unlike before.

I’ve scoured my email to see if I can find what I might have done originally to 
get command-option-‘ to do what I have been doing for year, but I can’t seem to 
find it.

I’ve looked through the Services setting in System Preferences - Keyboard, and 
looked through BBEdit as well, so far to no avail.

-- 
Exit, pursued by a bear.

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Where do you keep projects?

2012-10-01 Thread Oliver Taylor
Where do you save your projects? In the project's folder? In a projects 
folder?

I know you can save them anywhere, I'm asking where the list prefers to keep 
their BBEdit Project Files. Just curious.

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: Where do you keep projects?

2012-10-01 Thread Lee Hinde

On Oct 1, 2012, at 12:18 PM, Oliver Taylor olivertay...@me.com wrote:

 Where do you save your projects? In the project's folder? In a projects 
 folder?
 
 I know you can save them anywhere, I'm asking where the list prefers to keep 
 their BBEdit Project Files. Just curious.
 


| Project Parent Folder
| Project Data Folder  — sometimes this is the project folder, 
sometimes the project folder is in it
| Project Admin Folder   — design notes, invoices, etc.
- BBEdit projects file   — etc.



-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: Where do you keep projects?

2012-10-01 Thread Craig Heilman

On Oct 1, 2012, at 2:18 PM, Oliver Taylor wrote:

 Where do you save your projects? In the project's folder? In a projects 
 folder?
 
 I know you can save them anywhere, I'm asking where the list prefers to keep 
 their BBEdit Project Files. Just curious.
 

My typical structure:

company
project 1
archive  -- zip files, etc.
business -- contracts, invoices, etc.
docs -- specs, datasheets, etc.
src  -- source code
tools-- project specific tools (compilers, build tools, 
etc.)
project 1Notes.txt -- log file, billable hours, todo list, 
misc notes
project 1.bbprojectd -- BBEdit project file
project 2
...

-- 
Craig Heilman
Bugaboo Software - Software Engineering  Consulting
http://www.bugsoft.com/



-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: Where do you keep projects?

2012-10-01 Thread Steve deRosier
On Mon, Oct 1, 2012 at 12:18 PM, Oliver Taylor olivertay...@me.com wrote:

 Where do you save your projects? In the project's folder? In a projects
 folder?

 I know you can save them anywhere, I'm asking where the list prefers to
 keep their BBEdit Project Files. Just curious.


I'm usually working on open source projects or projects where I'm the only
BBEdit user, thus I usually work like:

homedir/projects/project-im-working-on/
homedir/projects/project-im-working-on.bbedit

So, the same directory my checkout out working tree is in.

Sometimes, if I choose, I might put it in the working tree directory and
then add it to version control. But generally only if I'm the only one
working on it, and it's not that good of an idea anyway because you end up
having to commit your .bbedit workspace all the time.

- Steve

-- 
-- 
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: OK, this is odd

2012-10-01 Thread Christopher Stone
On Oct 01, 2012, at 11:43, LuKreme krem...@kreme.com wrote:
 I’ve scoured my email to see if I can find what I might have done originally 
 to get command-option-‘ to do what I have been doing for year, but I can’t 
 seem to find it.

__

Hmm...

Hard Wrap



Hard Wrap...

Under Text in the Menu's  Shortcuts prefs?

--
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit





Re: [ANN] BBEdit 10.5 (3215) pre-release

2012-10-01 Thread Ken Lanxner
Thanks much for this one. I think I am going to be using this 
new Site action menu all the time.


I like the background color in the file list, too. And the 
clippings palette in two columns. And hiding the project list so 
I can just show open documents.  Oh and restoring easy access to 
recent files and files local to the current file when building 
anchors/images --- I've missed those!


There is a lot more but I'll shut up now. Thanks again!

Ken

sie...@barebones.com (Rich Siegel) wrote on  9/30/12  7:00 PM


*   [DOC] Projects have a new action menu, Site. This menu contains
commands for configuring the project as a Web Site project, with
local root, defaults for new documents (and a New HTML Document
contextual menu command), settings for the image updater, and a new
feature: Deployment. This last allows you to configure the remote
destination for a site's contents, and determine what additional steps
to take before uploading. Thus, deploying a site takes the place of
several operations that were previously manual.


--
Orange County Website Design
http://simplelives.com

--
--
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
http://groups.google.com/group/bbedit?hl=en
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: http://www.twitter.com/bbedit