Re: New to BBEdit: Fast switching between docs, Fast searching

2012-10-05 Thread Obir
Hi, is there a way to cycle through open documents in the new BBedit (version 10)? BBEdit - Preferences - Documents Drawer is gone and i can't find where this setting now lives. Als mentioned in this thread further below, Command ~ only cycles through open windows, not open documents. I hope

How to link to a named anchor on the same page?

2012-10-05 Thread Marc
Hello, In the past, linking to a named anchor that was on the same page (or in an other file) was easy. Option-Clicking on the filename (in the popupwindow after selecting the anchor command) opened up a list of all the named anchors in that file. Where is that funcionality now? Marc. -- --

Re: OK, this is odd

2012-10-05 Thread LuKreme
Rod Buchanan squawked out on Thursday 04-Oct-2012@13:24:46 On Oct 4, 2012, at 2:19 PM, John Siracusa wrote: I just discovered I'm in the same situation. I went to Preferences - Menus Shortcuts to try to re-assign command-' to Rewrap Quoted Text only to find that the command is not listed

Subpatterns in Grep?

2012-10-05 Thread jmichel
I have a file consisting of groups of lines (unknown number of lines in each group). Each line begins by a 6 digit number, followed by an unknown sequence of words and numbers. Consecutive lines starting with the same number form a group. My problem is to combine lines from each group into a

Re: Subpatterns in Grep?

2012-10-05 Thread Patrick Woolsey
At 08:18 -0700 10/05/2012, jmichel wrote: I have a file consisting of groups of lines (unknown number of lines in each group). Each line begins by a 6 digit number, followed by an unknown sequence of words and numbers. Consecutive lines starting with the same number form a group. My problem is to

Unix scripts not working in 10.8.2

2012-10-05 Thread John Delacour
I installed Mountain Lion yesterday, probably the worst decision I ever made! Some of Apple’s own main apps now seem to be buggier than they were 5 years ago with no useful new features. None of my UNIX filters in BBEdit are now working. For example this script #!/usr/bin/perl while () {

Re: Unix scripts not working in 10.8.2

2012-10-05 Thread François Schiettecatte
Dumb question, have you checked that the script has execute permissions? chmod 755 myScript.pl François On Oct 5, 2012, at 3:43 PM, John Delacour johndelac...@gmail.com wrote: I installed Mountain Lion yesterday, probably the worst decision I ever made! Some of Apple’s own main

Re: How to link to a named anchor on the same page?

2012-10-05 Thread Bucky Junior
Marc, Ironically, I wrote to support in the past week about this issue. I've noticed it being gone for a while and asked. The old file linking dialog box is gone, along with setting a named anchor. (BTW in html5, name is supposedly replaced by id.) As usual with support, I got a very nice

Re: Unix scripts not working in 10.8.2

2012-10-05 Thread Doug McNutt
At 20:43 +0100 10/5/12, John Delacour wrote: I installed Mountain Lion yesterday, probably the worst decision I ever made! Some of Apple's own main apps now seem to be buggier than they were 5 years ago with no useful new features. None of my UNIX filters in BBEdit are now working. For example

Re: Unix scripts not working in 10.8.2

2012-10-05 Thread François Schiettecatte
Good point about the semi-colon, I missed that (too much python). FWIW it is good practice to use : #!/usr/bin/env perl rather than: #!/usr/bin/perl At the start of your script, so that perl can be found if it is relocated. François On Oct 5, 2012, at 4:54 PM, Doug McNutt

Re: Unix scripts not working in 10.8.2

2012-10-05 Thread John Delacour
On 05/10/2012 21:54, Doug McNutt wrote: At 20:43 +0100 10/5/12, John Delacour wrote: None of my UNIX filters in BBEdit are now working. For example this script #!/usr/bin/perl while () { print * $_ } should put an asterisk at the beginning of each line in the front document but nothing

Markdown preview, page breaks

2012-10-05 Thread John Maxwell
Is there a way in CSS I can get BBEdit's Markdown preview to handle pagebreaks? The preview doesn't show pagebreaks at all (which is fine), but when I print from it, it paginates right in the middle of a line of text. Not good. I tried adding the obvious CSS paged-media stuff, but to no

Re: Subpatterns in Grep?

2012-10-05 Thread John Delacour
On 5 Oct 2012, at 16:18, jmichel jmi.mig...@gmail.com wrote: I have a file consisting of groups of lines (unknown number of lines in each group). Each line begins by a 6 digit number, followed by an unknown sequence of words and numbers. Consecutive lines starting with the same number