selecting blocs of lines

2018-06-09 Thread Jean-Christophe Helary
What's the easy way to select a block of lines specified by line numbers?

Like, I have a big text and want to select from line 57 to line 293?

If I were in emacs, I'd put a mark (ctrl+@) at the beginning of line 57 and 
would jump to line 293, then a region would be created and I could work on it.

Is there an equivalent to setting a mark to create a selection in BBedit?


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-09 Thread Christopher Stone
On 06/09/2018, at 22:43, Jean-Christophe Helary mailto:brandel...@gmail.com>> wrote:
> What's the easy way to select a block of lines specified by line numbers?


Hey Jean-Christophe,

As far as I know there isn't one.

BBEdit does have a jump-to-line function (Cmd-J), but it doesn't allow for a 
selection

You can roll-your-own and get as sophisticated as you want.

The appended script will pop-up a dialog and will accept the following input:

  ==  A selection range from start-line to 
end-line.

  == Select current line + num

- == Select current line - num

.  ==  Select current line to absolute end-line-num.

That's as fancy as I'm willing to make it at this time, but with all the tools 
available you can get substantially more sophisticated.

--
Take Care,
Chris


# Auth: Christopher Stone
# dCre: 2018/06/10 00:08
# dMod: 2018/06/10 00:56
# Appl: BBEdit
# Task: Select Lines with User Input from Dialog
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @BBEdit, @Select, @Lines, @User, @Input, @Dialog


property defaultDialogText : ""

set AppleScript's text item delimiters to {" "}

set defaultDialogText to text returned of ¬
(display dialog "Current Line + ==#" & linefeed & ¬
"Current Line - ==  -#" & linefeed & ¬
"Line Range ==  # #" with title "Enter Line Range for 
Selection" default answer defaultDialogText)

copy defaultDialogText to lineRange

set dialogTextItems to text items of lineRange

tell application "BBEdit"
tell front text window
set currentLine to startLine of selection

if length of dialogTextItems = 1 then
set dialogText to item 1 of dialogTextItems

if dialogText starts with "-" then
set firstLine to currentLine + dialogText
set lastLine to currentLine
else
set firstLine to currentLine
set lastLine to currentLine + dialogText
end if

else if length of dialogTextItems = 2 then
set {firstLine, lastLine} to dialogTextItems
end if

if firstLine = "." then
set firstLine to currentLine
end if

select (lines firstLine thru lastLine)
end tell
end tell



-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Jean-Christophe Helary
Chris, thank you ! :)

JC

> On Jun 10, 2018, at 15:13, Christopher Stone  
> wrote:
> 
> On 06/09/2018, at 22:43, Jean-Christophe Helary  > wrote:
>> What's the easy way to select a block of lines specified by line numbers?
> 
> 
> Hey Jean-Christophe,
> 
> As far as I know there isn't one.
> 
> BBEdit does have a jump-to-line function (Cmd-J), but it doesn't allow for a 
> selection
> 
> You can roll-your-own and get as sophisticated as you want.
> 
> The appended script will pop-up a dialog and will accept the following input:


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Christopher Stone
On 06/10/2018, at 03:11, Jean-Christophe Helary mailto:brandel...@gmail.com>> wrote:
> Chris, thank you ! :)


Hey Jean-Christophe,

You're welcome.

I forgot to mention that I'm not doing any error checking in that script.

If I were to do the full production I'd make sure the user couldn't input 
impossible values.

The way things are now the script might or might not fail silently.  There are 
some circumstances that will throw an error and some that will not.

In any case it works if you input the right values, and it cannot harm your 
document.

--
Take Care,
Chris


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Jean-Christophe Helary


> On Jun 10, 2018, at 17:24, Christopher Stone  
> wrote:
> 
> I forgot to mention that I'm not doing any error checking in that script.

Thank you for the reminder.

That's something I'm pretty sure I can add on my side, just in case. As 
homework for the remainder of the WE (already past 6pm on Sunday here...)

JC

Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Herbert Schulz
> On Jun 9, 2018, at 10:43 PM, Jean-Christophe Helary  
> wrote:
> 
> What's the easy way to select a block of lines specified by line numbers?
> 
> Like, I have a big text and want to select from line 57 to line 293?
> 
> If I were in emacs, I'd put a mark (ctrl+@) at the beginning of line 57 and 
> would jump to line 293, then a region would be created and I could work on it.
> 
> Is there an equivalent to setting a mark to create a selection in BBedit?
> 
> 
> Jean-Christophe Helary

Howdy,

Click at the start line, go to the final line, Shift-Click at the end of that 
line.

Good Luck,

Herb Schulz
(herbs at wideopenwest dot com)


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Jean-Christophe Helary


> On Jun 10, 2018, at 20:50, Herbert Schulz  wrote:
> 
>> On Jun 9, 2018, at 10:43 PM, Jean-Christophe Helary  
>> wrote:
>> 
>> What's the easy way to select a block of lines specified by line numbers?
>> 
>> Like, I have a big text and want to select from line 57 to line 293?
>> 
>> If I were in emacs, I'd put a mark (ctrl+@) at the beginning of line 57 and 
>> would jump to line 293, then a region would be created and I could work on 
>> it.
>> 
>> Is there an equivalent to setting a mark to create a selection in BBedit?
>> 
>> 
>> Jean-Christophe Helary
> 
> Howdy,
> 
> Click at the start line, go to the final line, Shift-Click at the end of that 
> line.

:) Yes.

But I was looking for something more automatic.

The problem with BBEdit is that point and mark are always the same (if you 
allow myself to speak in emacsese).

If there was a way to separate point and mark. I could leave the mark where I 
want, jump to some place in the document and I would have a selection.

I guess that's a valid feature request ?


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Herbert Schulz
> On Jun 10, 2018, at 8:03 AM, Jean-Christophe Helary  
> wrote:
> 
> 
> 
>> On Jun 10, 2018, at 20:50, Herbert Schulz  wrote:
>> 
>>> On Jun 9, 2018, at 10:43 PM, Jean-Christophe Helary  
>>> wrote:
>>> 
>>> What's the easy way to select a block of lines specified by line numbers?
>>> 
>>> Like, I have a big text and want to select from line 57 to line 293?
>>> 
>>> If I were in emacs, I'd put a mark (ctrl+@) at the beginning of line 57 and 
>>> would jump to line 293, then a region would be created and I could work on 
>>> it.
>>> 
>>> Is there an equivalent to setting a mark to create a selection in BBedit?
>>> 
>>> 
>>> Jean-Christophe Helary
>> 
>> Howdy,
>> 
>> Click at the start line, go to the final line, Shift-Click at the end of 
>> that line.
> 
> :) Yes.
> 
> But I was looking for something more automatic.
> 
> The problem with BBEdit is that point and mark are always the same (if you 
> allow myself to speak in emacsese).
> 
> If there was a way to separate point and mark. I could leave the mark where I 
> want, jump to some place in the document and I would have a selection.
> 
> I guess that's a valid feature request ?
> 
> 
> Jean-Christophe Helary

Howdy,

There are many ``emacsy'' commands, including what you want, that already exist 
in Apple's Text Frameworks and there is a way for all applications that use 
those frameworks. I don't know if recent versions of BBEdit use those 
frameworks.

Good Luck,

Herb Schulz
(herbs at wideopenwest dot com)


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Rich Siegel

On 6/10/18 at 11:43 PM, brandel...@gmail.com (Jean-Christophe Helary)
wrote:


What's the easy way to select a block of lines specified by line
numbers?

Like, I have a big text and want to select from line 57 to line 293?


Here is an excerpt from the 12.1 change notes:

*   "Go To Line" (either the menu command or the popover from the
cursor position display) support the specification of line
ranges, in addition to just a single line and column. For
example, entering one of these forms into the field will behave
as follows:

X   moves the insertion point to the beginning of 
line X


X:C moves the insertion point to column C of line X

X-Y selects the text from the beginning of line X 
to the end of line Y

(including the line break at the end of the line).

X:C-Y   selects the text from column C on line X to the 
end of line Y

(including the line break at the end of the line).

X:C-Y:C2selects the text from column C on line X to 
column C2 on line Y.


In this way, you can use "Go to Line" to select ranges of text 
based on line and column number.


R.
--
Rich Siegel Bare Bones Software, Inc.
  

Someday I'll look back on all this and laugh... until they 
sedate me.


--
This is the BBEdit Talk public discussion group. 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 Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Jan Erik Moström

On 10 Jun 2018, at 16:11, Rich Siegel wrote:

In this way, you can use "Go to Line" to select ranges of text based 
on line and column number.


I've learned long ago that if I want to do something with text BBEdit 
has probably already support for it :D


= jem

--
This is the BBEdit Talk public discussion group. 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 Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Jean-Christophe Helary


> On Jun 10, 2018, at 23:11, Rich Siegel  wrote:
> 
> Here is an excerpt from the 12.1 change notes:

Thank you ! I'm still on 11 so I missed that. I'll definitely consider the 
upgrade.


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-10 Thread Christopher Stone
On 06/10/2018, at 09:11, Rich Siegel mailto:sie...@barebones.com>> wrote:
> What's the easy way to select a block of lines specified by line numbers?
>> Like, I have a big text and want to select from line 57 to line 293?
> 
> Here is an excerpt from the 12.1 change notes:
> 
> *   "Go To Line" (either the menu command or the popover from the


Cool.

I was looking for that in the manual last night but around the emacs stuff and 
not the jump to line function.

--
Take Care,
Chris

-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-11 Thread @lbutlr
On 10 Jun 2018, at 08:11, Rich Siegel  wrote:
> In this way, you can use "Go to Line" to select ranges of text based on line 
> and column number.

Wow. This is so very very cool!


-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-19 Thread Christopher Stone
On 06/10/2018, at 08:03, Jean-Christophe Helary mailto:brandel...@gmail.com>> wrote:
> If there was a way to separate point and mark. I could leave the mark where I 
> want, jump to some place in the document and I would have a selection.
> 
> I guess that's a valid feature request ?


Hey Jean-Christophe,

You can do that with two scripts.  (Appended.)

A script that records the current insertion location.

And a script that will select from the recorded “marker” to the current cursor 
location in the front document.

Save them as compiled scripts using the Script Editor.app.

Give them relevant keyboard shortcuts.

Go-to-town.

This line in script 2 is vitally important:

set scriptFile to alias ((path to application support from user domain as text) 
& "BBEdit:Scripts:Mark_01.scpt")

The script name MUST be correct.

The script will function correctly when moving either forward or backward in 
the document.

Once again I've provided no error-checking.  I added a very generic 
error-handler to script 2 as an example.

I have not provided multiple document support.

Presently the marker is stored in the Marker_01 script and has no specific 
linkage to the document, so it is very perishable.

If I was going to move beyond proof-of-concept I'd consider storing the marker 
in a text file on a per-document basis using the document name and character 
offset of the insertion location.  Reading, writing, and maintaining this would 
be a trivial exercise with `sed` and would be very fast.

--
Take Care,
Chris


The Mark Script



# Auth: Christopher Stone
# dCre: 2018/06/10 22:19
# dMod: 2018/06/10 22:19 
# Appl: BBEdit
# Task: Create Marker 01 for use in other scripts.
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @BBEdit, @Create, @Marker


property insertionLocation : ""

tell application "BBEdit"
tell front text window
set insertionLocation to selection
end tell
end tell





The Select-from-Cursor-Location-to-Marker Script



# Auth: Christopher Stone
# dCre: 2018/06/10 22:19
# dMod: 2018/06/10 22:19 
# Appl: BBEdit
# Task: Select from Marker 01 to current cursor location.
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @BBEdit, @Select, @Marker, @Current, @Cursor, 
@Location


try

set scriptFile to alias ((path to application support from user domain as 
text) & "BBEdit:Scripts:Mark_01.scpt")
set markScript to load script scriptFile

tell application "BBEdit"
tell front text window
set markedInsertionLocation to markScript's insertionLocation
set insertionLocation to selection

set markedCharacterOffset to (characterOffset of 
markedInsertionLocation)
set currentCharacterOffset to (characterOffset of insertionLocation)

if markedCharacterOffset < currentCharacterOffset then
set startChar to markedCharacterOffset
set endChar to currentCharacterOffset - 1
else
set startChar to currentCharacterOffset
set endChar to markedCharacterOffset - 1
end if

select (characters startChar thru endChar)

end tell
end tell

on error e number n
set e to e & return & return & "Num: " & n
if n ≠ -128 then
try
tell application (path to frontmost application as text) to set 
ddButton to button returned of ¬
(display dialog e with title "ERROR!" buttons {"Copy Error 
Message", "Cancel", "OK"} ¬
default button "OK" giving up after 30)
if ddButton = "Copy Error Message" then set the clipboard to e
end try
end if
end try





-- 
This is the BBEdit Talk public discussion group. 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 Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: selecting blocs of lines

2018-06-19 Thread Jean-Christophe Helary
:) Thank you Chris !

Jean-Christophe 

> On Jun 20, 2018, at 8:32, Christopher Stone  
> wrote:
> 
> On 06/10/2018, at 08:03, Jean-Christophe Helary  > wrote:
>> If there was a way to separate point and mark. I could leave the mark where 
>> I want, jump to some place in the document and I would have a selection.
>> 
>> I guess that's a valid feature request ?
> 
> 
> Hey Jean-Christophe,
> 
> You can do that with two scripts.  (Appended.)
> 
> A script that records the current insertion location.
> 
> And a script that will select from the recorded “marker” to the current 
> cursor location in the front document.
> 
> Save them as compiled scripts using the Script Editor.app.
> 
> Give them relevant keyboard shortcuts.
> 
> Go-to-town.
> 
> This line in script 2 is vitally important:
> 
> set scriptFile to alias ((path to application support from user domain as 
> text) & "BBEdit:Scripts:Mark_01.scpt")
> 
> The script name MUST be correct.
> 
> The script will function correctly when moving either forward or backward in 
> the document.
> 
> Once again I've provided no error-checking.  I added a very generic 
> error-handler to script 2 as an example.
> 
> I have not provided multiple document support.
> 
> Presently the marker is stored in the Marker_01 script and has no specific 
> linkage to the document, so it is very perishable.
> 
> If I was going to move beyond proof-of-concept I'd consider storing the 
> marker in a text file on a per-document basis using the document name and 
> character offset of the insertion location.  Reading, writing, and 
> maintaining this would be a trivial exercise with `sed` and would be very 
> fast.
> 
> --
> Take Care,
> Chris
> 
> 
> The Mark Script
> 
> 
> 
> # Auth: Christopher Stone
> # dCre: 2018/06/10 22:19
> # dMod: 2018/06/10 22:19 
> # Appl: BBEdit
> # Task: Create Marker 01 for use in other scripts.
> # Libs: None
> # Osax: None
> # Tags: @Applescript, @Script, @BBEdit, @Create, @Marker
> 
> 
> property insertionLocation : ""
> 
> tell application "BBEdit"
> tell front text window
> set insertionLocation to selection
> end tell
> end tell
> 
> 
> 
> 
> 
> The Select-from-Cursor-Location-to-Marker Script
> 
> 
> 
> # Auth: Christopher Stone
> # dCre: 2018/06/10 22:19
> # dMod: 2018/06/10 22:19 
> # Appl: BBEdit
> # Task: Select from Marker 01 to current cursor location.
> # Libs: None
> # Osax: None
> # Tags: @Applescript, @Script, @BBEdit, @Select, @Marker, @Current, @Cursor, 
> @Location
> 
> 
> try
> 
> set scriptFile to alias ((path to application support from user domain as 
> text) & "BBEdit:Scripts:Mark_01.scpt")
> set markScript to load script scriptFile
> 
> tell application "BBEdit"
> tell front text window
> set markedInsertionLocation to markScript's insertionLocation
> set insertionLocation to selection
> 
> set markedCharacterOffset to (characterOffset of 
> markedInsertionLocation)
> set currentCharacterOffset to (characterOffset of 
> insertionLocation)
> 
> if markedCharacterOffset < currentCharacterOffset then
> set startChar to markedCharacterOffset
> set endChar to currentCharacterOffset - 1
> else
> set startChar to currentCharacterOffset
> set endChar to markedCharacterOffset - 1
> end if
> 
> select (characters startChar thru endChar)
> 
> end tell
> end tell
> 
> on error e number n
> set e to e & return & return & "Num: " & n
> if n ≠ -128 then
> try
> tell application (path to frontmost application as text) to set 
> ddButton to button returned of ¬
> (display dialog e with title "ERROR!" buttons {"Copy Error 
> Message", "Cancel", "OK"} ¬
> default button "OK" giving up after 30)
> if ddButton = "Copy Error Message" then set the clipboard to e
> end try
> end if
> end try
> 
> 
> 
> 
> 
> 
> -- 
> This is the BBEdit Talk public discussion group. 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 Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit