Re: ChatGPT worksheet contexts

2024-01-15 Thread Bruce Van Allen
As one kind of context, I describe something or write out a code excerpt a la 
StackOverflow, and then ask a question about it.

Example: select this and press Enter/Control-Return:

The programming language Raku has a Supply construct, which provides the means 
to iterate over a variety of collections and sequences. What other programming 
languages have similar features?

Answer in a few moments (you can see the spinning activity indicator in the 
bottom bar):

> Several programming languages have similar features to Raku's Supply 
> construct. Some of them include:

> 1. Python: Python has a similar concept called ...

For some cases my description has taken multiple paragraphs, and often the 
first answer misses something so I refer back or re-state and query again.



— Bruce

_bruce__van_allen__santa_cruz_ca_





> On Jan 15, 2024, at 2:09 PM, Tim Gray  wrote:
> 
> What is the recommended way of including a context while use a ChatGPT 
> worksheet?  Just start of with it as your first line?  Something else?

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/538F59FF-C188-4FAF-BA6B-341168CA0E3A%40cruzio.com.


Re: ChatGPT worksheet contexts

2024-01-15 Thread Rich Siegel
On 15 Jan 2024, at 17:09, Tim Gray wrote:

> What is the recommended way of including a context while use a ChatGPT 
> worksheet?  Just start of with it as your first line?  Something else?

There's not currently a mechanism for adding (or specifying, or changing) 
context. If this is important to you, please let us know via email to 
"supp...@barebones.com".

Thanks,

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 need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/EE5DF53A-1C94-4D81-8C53-1EA49963C2A3%40barebones.com.


ChatGPT worksheet contexts

2024-01-15 Thread Tim Gray
What is the recommended way of including a context while use a ChatGPT 
worksheet?  Just start of with it as your first line?  Something else?

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/944ad211-e8dd-4731-bc1b-7958864bd890%40betaapp.fastmail.com.


Re: Trouble creating a CLM

2024-01-15 Thread Maarten Sneep
Hi Joaquin,

> On 15 Jan 2024, at 16:29, Joaquin Adiego  wrote:
> 
> Hi Maarten,
> 
> Thank you for your kind reply. I have already tested the expression you 
> suggest (I haven't tried that variant yet) and the result is the same. The 
> fact is that it is a bit strange that it works for one subexpression and not 
> for another very similar one.

In that case I suggest that you ask support at Bare Bones for help. As jj 
suggested, this pattern may be used in a different way that requires you to use 
a different category for this label.

Best,

Maarten.

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/3C0E3025-3CB9-481C-B548-97BC3743DA32%40xs4all.nl.


Re: Trouble creating a CLM

2024-01-15 Thread jj
Hi Joaquin,

My guess is that keywords are whitespace separated character runs – they 
don't contain whitespace.
BBEdit probably chunks the keywords "before" matching against the regular 
expression chunk by chunk.
For example what your regular expression matches against is the string 
"label2:", not the whole line. Thus the start of line anchor always applies.

The Numeric Tags appear correctly because they are excluded from the 
"Number Pattern" not because of the start of line anchor.

I fear that keyword patterns won't let you do what you want. You will have 
to use the other patterns that are whitespace aware… but there is a limited 
number of those.

HTH,

Jean Jourdain
On Monday, January 15, 2024 at 5:42:48 PM UTC+1 Joaquin Adiego wrote:

> Hi Maarten,
>
> Thank you for your kind reply. I have already tested the expression you 
> suggest (I haven't tried that variant yet) and the result is the same. The 
> fact is that it is a bit strange that it works for one subexpression and 
> not for another very similar one.
>
> Regards.
>
> El domingo, 14 de enero de 2024 a las 20:09:34 UTC+1, Maarten Sneep 
> escribió:
>
>> Hi,
>>
>> I think you need to anchor the whole expression:
>>
>> (?x:
>> ^(([a-zA-Z_]{1}[a-zA-Z0-9_]*:)|
>> ([1-9]{1}[0-9]*))
>> )
>>
>> (I have not tested this yet).
>>
>> Maarten
>>
>> On 14 Jan 2024, at 11:32, Joaquin Adiego  wrote:
>>
>> Hi,
>>
>> I'm developing a codeless language module for Boriel ZX Basic. Everything 
>> works fine except the labels (which can be the old Basic line numbers, at 
>> the beginning of the line, or an identifier ending with ':' also at the 
>> beginning of a line).  I have used regular expressions to recognize all 
>> language elements (see file attached). Numeric tags are recognized well 
>> (appearing in green, see the screenshot attached), but text tags are not, 
>> recognizing strings that are not at the beginning of a line as tags as 
>> well.  The two regular expressions are similar, so I don't understand very 
>> well why it works well in one case and doesn't work in the other.  I have 
>> tried rewriting the regular expression in different ways but have not been 
>> successful, so I deduce that the problem must lie in the module 
>> specification, but I am not able to locate it.
>>
>> Can anyone help me with this?
>>
>> Regards
>>
>>
>>
>> -- 
>> This is the BBEdit Talk public discussion group. If you have a feature 
>> request or need technical support, please email "sup...@barebones.com" 
>> rather than posting here. Follow @bbedit on Twitter: <
>> https://twitter.com/bbedit>
>> --- 
>> 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+un...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/bbedit/cf17d86a-e9dc-4851-bfb3-e82ae386008an%40googlegroups.com
>>  
>> 
>> .
>> 
>>
>>
>>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/83a187f5-3f7c-4c0f-9016-5534337026e8n%40googlegroups.com.


Re: Can't get CharGPT to work on v15

2024-01-15 Thread Bruce Van Allen
NOT a ChatGPT Plus account. 



Excerpt:

How do I access the GPT-4 API?
If you're a Pay-As-You-Go customer and you've made a successful payment of $1 
or more, you'll be able to access the GPT-4 API (8k).

ChatGPT Plus
ChatGPT Plus subscribers will get GPT-4 access on chat.openai.com with a usage 
cap. We will dynamically adjust the exact usage cap depending on demand and 
system performance in practice. As of January 5th 2024, GPT-4 has a limit of 40 
messages every 3 hours.
Please be patient though — we expect massive demand and will scale up and 
optimize our systems over the coming months.
Note: this will not provide subscribers with access to the API.


— Bruce

_bruce__van_allen__santa_cruz_ca_





> On Jan 15, 2024, at 10:07 AM, Steve Hodgson  wrote:
> 
> I believe that to have the ChatGPT integration work needs a ChatGPT Plus 
> account, an API key setup in BBEdit and paymet added for the API usage.


-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/13930050-22BF-4B9A-A492-D31AD77F2929%40cruzio.com.


BBEdit 15 change to markdown coloring?

2024-01-15 Thread Craig Heilman
I just updated to BBEdit 15.0 and quickly noticed a change in my markdown note 
files in that many words/phrases previously highlighted are no longer 
highlighted. For example, I use “tags” like [_ACTION_], [_WAITING_], 
[_QUESTION_], etc in my notes to call attention to action items, etc. These 
tags were quite visible with the default red coloring but with BBEdit 15, they 
are no longer colored. Yes, I know I’m abusing the markdown link syntax for 
even more visibility, especially when changing “[_ACTION_]" to “[DONE]”, but my 
tags aren’t links and it hasn’t seemed to cause any issues so far).

Apparently the following change is responsible: "Made a change to the Markdown 
color scanner, so that underscores that aren't immediately preceded by a 
whitespace character don't trigger coloring of an emphasized range. (This is 
not strictly in the letter of the Markdown specification, but is consistent 
with common usage.)”

I discovered that this change also means that items delimited with underscores 
that happen to be at the start of a line (apparently not whitespace) are also 
not colored.

1. Is there an option to restore the previous coloring behavior?

2. Any suggestions on alternative methods of “tagging” items in my markdown 
files that both provide visibility via coloring but don’t run afoul of generic 
markdown rules?

Thanks,

Craig



--
Craig Heilman
Bugaboo Software



-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/20289323-987C-4594-9F12-1C60B4A1CA94%40bugsoft.com.


Re: Can't get CharGPT to work on v15

2024-01-15 Thread Steve Hodgson
I believe that to have the ChatGPT integration work needs a ChatGPT Plus 
account, an API key setup in BBEdit and paymet added for the API usage.

I found a good explanation for this on the TidBITS site here 

.

Hope this helps.

Cheers,

Steve

On Sunday 14 January 2024 at 22:20:34 UTC David Viard wrote:

> Primed with $$$ ?
> What do you mean?
>
> I have that same error
>
> Le 12 janv. 2024 à 17:05, Steve Hodgson  a écrit :
>
> Figured it out - API needs to be primed with $$$. Doh!
>
> Cheers,
>
> Steve
>
> On Friday 12 January 2024 at 15:48:42 UTC Steve Hodgson wrote:
>
>> I have a different problem. I have a ChatGPT Plus account, an API key 
>> setup in BBEdit, figured out the key combination to use but I get the error 
>> below:
>>
>> You exceeded your current quota please check your plan and billing 
>> details.
>>
>> If I switch to gpt-4 the error becomes:
>>
>> The model `gpt-4` does not exist or you do not have access to it.
>>
>> Any thoughts?
>>
>> Cheers,
>>
>> Steve
>>
>> On Wednesday 10 January 2024 at 00:27:47 UTC Maxime Audet wrote:
>>
>>> Hey,
>>>
>>> Just installed v15 and I'm trying ChatGPT feature. However, it doesn't 
>>> seem to work, am I doing something wrong?
>>>
>>> See attached recording.
>>>
>>> Thanks!
>>>
>>
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> 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+un...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/74b41016-2661-4157-81c9-775f9f7f5526n%40googlegroups.com
>  
> 
> .
>
>
> 
> 
> David Viard – DVW Design
> Directeur artistique, UX/UI Designer, Chef de projet, Consultant Digital
> Art Director, UX/UI Designer, Digital Project Manager, Consultant
>
> Mobile : +33 (0)6 68 49 06 04 <+33%206%2068%2049%2006%2004>
>
> Site : https://dvw.design
> LinkedIn : https://www.linkedin.com/in/david-viard/
>
> *** 
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/07faf61a-6a5b-4ce1-a9fa-4a8f60c258e3n%40googlegroups.com.


Re: Trouble creating a CLM

2024-01-15 Thread Joaquin Adiego
Hi Maarten,

Thank you for your kind reply. I have already tested the expression you 
suggest (I haven't tried that variant yet) and the result is the same. The 
fact is that it is a bit strange that it works for one subexpression and 
not for another very similar one.

Regards.

El domingo, 14 de enero de 2024 a las 20:09:34 UTC+1, Maarten Sneep 
escribió:

> Hi,
>
> I think you need to anchor the whole expression:
>
> (?x:
> ^(([a-zA-Z_]{1}[a-zA-Z0-9_]*:)|
> ([1-9]{1}[0-9]*))
> )
>
> (I have not tested this yet).
>
> Maarten
>
> On 14 Jan 2024, at 11:32, Joaquin Adiego  wrote:
>
> Hi,
>
> I'm developing a codeless language module for Boriel ZX Basic. Everything 
> works fine except the labels (which can be the old Basic line numbers, at 
> the beginning of the line, or an identifier ending with ':' also at the 
> beginning of a line).  I have used regular expressions to recognize all 
> language elements (see file attached). Numeric tags are recognized well 
> (appearing in green, see the screenshot attached), but text tags are not, 
> recognizing strings that are not at the beginning of a line as tags as 
> well.  The two regular expressions are similar, so I don't understand very 
> well why it works well in one case and doesn't work in the other.  I have 
> tried rewriting the regular expression in different ways but have not been 
> successful, so I deduce that the problem must lie in the module 
> specification, but I am not able to locate it.
>
> Can anyone help me with this?
>
> Regards
>
>
>
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> 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+un...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/cf17d86a-e9dc-4851-bfb3-e82ae386008an%40googlegroups.com
>  
> 
> .
> 
>
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/fbdca795-6674-41ea-9915-2c29c898a808n%40googlegroups.com.


Re: automator actions can't be opened

2024-01-15 Thread Johnny Ragadoo
Worked great - many thanks for your help.

BBEdit is superb for coding, but I also like to use it for writing content 
for Affinity Publisher. Affinity is very nice for formatting, a crime 
against humanity as a word processor. As are most DTP applications.

So, I use a BBEdit notebook. That aggregates all the text and sidebars in 
one file which I can copy-paste into Affinity.

I use double-returns to delimit paragraphs, so to paste into Affinity I use 
Remove blank lines/select all/copy/undo before pasting as plain text into 
Affinity. I could use a word processor, but that has the complication of 
pasting new styles into Affinity. Of course, I could paste as plain text, 
but why not just use plain text to begin with?

BBEdit is a great tool.

On Monday, January 15, 2024 at 8:16:04 AM UTC-6 Rich Siegel wrote:

> On 15 Jan 2024, at 9:14, Johnny Ragadoo wrote:
>
> > First, insert standard gushing about BBEdit. It is cool in the extreme.
> >
> > Automator doesn't show any BBEdit actions. I found a Barebones
> > download BBEditAutomatorActionsInstaller-14.1.pkg
> > at https://www.barebones.com/support/bbedit/automator.html .
> >
> > When I tried to open the .pkg file in macOS 12.7.2 Monterey I got an 
> error
> > stating “BBEditAutomatorActionsInstaller-14.1.pkg” can’t be opened 
> because
> > Apple cannot check it for malicious software.
>
> Right-click on the package and choose "Open", and then confirm that you 
> wish to do so. Thereafter you should be able to install the actions.
>
> 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 need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/3a29143c-f58e-4fb5-a83b-d07265c62213n%40googlegroups.com.


Re: automator actions can't be opened

2024-01-15 Thread Rich Siegel
On 15 Jan 2024, at 9:14, Johnny Ragadoo wrote:

> First, insert standard gushing about BBEdit. It is cool in the extreme.
>
> Automator doesn't show any BBEdit actions. I found a Barebones
> download BBEditAutomatorActionsInstaller-14.1.pkg
> at https://www.barebones.com/support/bbedit/automator.html .
>
> When I tried to open the .pkg file in macOS 12.7.2 Monterey I got an error
> stating “BBEditAutomatorActionsInstaller-14.1.pkg” can’t be opened because
> Apple cannot check it for malicious software.

Right-click on the package and choose "Open", and then confirm that you wish to 
do so. Thereafter you should be able to install the actions.

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 need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/52DFBC5D-FA05-4C89-B9C5-D7015AAB4AF0%40barebones.com.


automator actions can't be opened

2024-01-15 Thread Johnny Ragadoo
First, insert standard gushing about BBEdit. It is cool in the extreme.

Automator doesn't show any BBEdit actions. I found a Barebones 
download BBEditAutomatorActionsInstaller-14.1.pkg 
at https://www.barebones.com/support/bbedit/automator.html .

When I tried to open the .pkg file in macOS 12.7.2 Monterey I got an error 
stating “BBEditAutomatorActionsInstaller-14.1.pkg” can’t be opened because 
Apple cannot check it for malicious software.

Further text in the error dialog says, "This software needs to be updated. 
Contact the developer for more information."

My guess is this may be because I'm running BBEdit 15.0.

Is there an updated automator actions package for 15.0?

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/c05977f1-1ae7-4b3f-915b-0098a9ac7d72n%40googlegroups.com.


Re: help on notes project

2024-01-15 Thread Tim Gray
I love BBEdit, and I'm sure this could be done with it and some Applescripts, 
but something like Python seems much better suited.  Very easy to write a small 
script that would cycle through a bunch of text files, extract text based on 
different criteria, and output things to new text files.

Tim

On Sat, Dec 16, 2023, at 11:47 AM, Andrew McDowell wrote:
> - notes project description
> - I have a number of notes journals, some up to 100k words, written over some 
> 30 years. Multiple topics in each file. My project is to extract and compile 
> all meaningful notes from these journals and split them out by topic into 
> separate files. Everything will be plain text, at least initially (I'll have 
> to sanitize some Word files). My thought is to use BBEdit and Apple Scripts 
> to accomplish this, as it's the only thing I've found that shows any promise 
> at all. If anyone has a better idea I'm listening.
> - I would prep the notes journal files into delimited text blocks as seen 
> below. Following that is my pseudo code attempt at a script. I'm a beginner 
> with Apple Scripts and with BBEdit. I am not a coder but willing to learn 
> enough scripting, regex, etc to do this. Help is appreciated. Let me know if 
> I can be clearer.
> - If this works I'm sure I'll find other things to automate for this or other 
> projects.
> -
> - proposed form for 'prepped source file' (notes journal)
> - misc (unwanted) text
> - filename1 (target file for the following clip)
> - ;; (beginning delimiter)
> - heading, date
> - text body
> - ;; (end delimiter)
> - misc (unwanted) text
> - filename2
> - ;;
> - heading, date
> - text body
> - ;;
> - misc text
> - etc ... to end of file
> -
> - proposed (pseudo code) script 
> - find 1st filename
> - index that file to front
> - select & copy delimited text (;; text ;;)
> - append selection to target file
> - find next filename in source file & repeat
> - no more filenames? 
> - done.
> -
> - maybe only an end delimiter is needed, if filename may serve as beginning 
> delimiter?
> - If anyone offers a script, please translate it for me (I'm a dummy)
> - Or if there's a better way...
> Thanks,  Andy
> 
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. 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 view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/8c32f2e1-9b07-49a7-801c-06d94af18ce0n%40googlegroups.com
>  
> .

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/7ac99d8c-c0bc-4b29-aecd-fe3e96179434%40app.fastmail.com.