Re: Displaying Code Page 437

2024-03-18 Thread Rick Gordon
What if you set your text encoding to one of the other Western encodings? On Sunday, March 17, 2024 at 5:08:14 PM UTC-7 Bill Kochman wrote: > Hello Folks, > > I recently resurrected — probably for the fourth time — my PC-ANSI-based > BBS, which I first began running in 1993. > > So, I am

Re: Possible with Grep?

2024-02-28 Thread Rick Gordon
*(?i)* in the string will render it case-insensitive, as will unchecking *Case sensitive* at the bottom of the BBEdit Find/Replace dialog. On Wednesday, February 28, 2024 at 1:14:26 PM UTC-8 Brian Forte wrote: > On Wed, 28 Feb 2024 11:38:07 -0600, Jim Straus wrote: > > I'm looking to change a

Re: Most BBEdit-like Terminal Editor ??

2024-02-28 Thread Rick Gordon
Thanks all! I think micro looks like the best one I've found. I appreciate your insights. Rick Gordon -- 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. Foll

Most BBEdit-like Terminal Editor ??

2024-02-27 Thread Rick Gordon
What Terminal editor is the most similar in interface to BBEdit (i.e., the easiest TUI editor for a person who is most comfortable with BBEdit), which I might install on a remote machine where it may sometimes require text editing within the Terminal? -- This is the BBEdit Talk public

Re: Color and text

2023-10-20 Thread Rick Gordon
its colors on import to Nisus. Rick Gordon From: Gilbert Grosdidier To: BBEdit Talk Date: Fri, 13 Oct 2023 09:14:44AM GMT-07:00 Subject:Color and text Hello, I'm a newbie with BBEdit use. I was unable

Re: Formatting Multiple Choice Questions Using Regex

2023-09-15 Thread Rick Gordon
\)\h)(?:[^{\r]+)(\{C\})?\r\h+(?:b\)\h)(?:[^{\r]+)(\{C\})?\r\h+(?:c\)\h)(?:[^{\r]+)(\{C\})?\r\h+(?:d\)\h)(?:[^{\r]+)(\{C\})?\r\h* On Friday, September 15, 2023 at 2:42:30 PM UTC-7 Rick Gordon wrote: > The Find code should work based on your examples, but explaining it out: > >1

Re: Formatting Multiple Choice Questions Using Regex

2023-09-15 Thread Rick Gordon
Well, the numbered list formatting got screwed up from step 8, but I think the intent is clear. On Friday, September 15, 2023 at 2:42:30 PM UTC-7 Rick Gordon wrote: > The Find code should work based on your examples, but explaining it out: > >1. (?:^\d+\.\h+) >Starting at t

Re: Formatting Multiple Choice Questions Using Regex

2023-09-15 Thread Rick Gordon
matches > found." I've checked everything and it matches what's in your post in this > forum. What could I be doing wrong? > Howard > > [image: Gordon REGEX (1).png] > On Thursday, September 14, 2023 at 7:49:03 PM UTC-4 Rick Gordon wrote: > >> This will require two r

Re: Formatting Multiple Choice Questions Using Regex

2023-09-15 Thread Rick Gordon
Howard, you would need to have this in Replace: MC\t"\1\2\2\3\4\4\5"\tChoice 1\tIncorrect\6\tChoice 2\tIncorrect\7\tChoice 3\tIncorrect\8\tChoice 4\tIncorrect\9 Your replace field shows the desired outcome, not the Replace element of the regex. Rick Gordon On Friday, Septembe

Re: Formatting Multiple Choice Questions Using Regex

2023-09-14 Thread Rick Gordon
Incorrect{C}Choice 2IncorrectChoice 3IncorrectChoice 4Incorrect MC"Why is the ""Analysis"" component important?"Choice 1 IncorrectChoice 2IncorrectChoice 3IncorrectChoice 4 Incorrect{C} -- Then, a second

Re: Bbedit Applescript command

2023-08-18 Thread Rick Gordon
I suspect that either: * It is not a text file; Tex-Edit Plus also handles RTF, DOC, and AppleWorks files. * It is a text file, but the text encoding is not matching what you've chosen in BBEdit. Rick Gordon On August 17, 2023 at 11:06:59 PM [-0700], Eric wrote in an email

Re: Using AppleScript to find and set an AS variable collects TMI (too much information)

2023-08-14 Thread Rick Gordon
text:08:30 ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email "supp..

Re: Replacing all spaces in a line, but not the first

2023-06-07 Thread Rick Gordon
one *(\h\w+)*, for the shortest possibility, and the rest with yet an additional instance of *(\h\w+)* , separating each with a vertical bar. Rick Gordon On June 7, 2023 at 9:37:27 PM [-0700], Dave Simpson wrote in an email entitled "Re: Replacing all spaces in a line, but not

Re: Replacing all spaces in a line, but not the first

2023-06-07 Thread Rick Gordon
groups are possible. It doesn't handle street names in the most intelligent way, as it will put a comma after the street name. And if any words had punctuation in them (like "St.", or a hyphen), that would require further modification. Rick Gordon -- On June 7, 2023 at 1:18:08

Re: Find and Replace items which do NOT contain a simple pattern...

2023-05-14 Thread Rick Gordon
Some discussion here <https://ruby-talk.ruby-lang.narkive.com/dKpNQUAf/inverting-a-regular-expression> or googling <https://www.google.com/search?q=regex+invert>. But it involves some coding outside BBEdit. Rick Gordon --- On May 14, 2023 at 6:37:10 PM [-0700], 'Andy Nickless

Re: BBEdit or BBEdit-Like Editor Running Directly in Terminal

2023-04-03 Thread Rick Gordon
Thanks, Steve and Chris for your recommendations. I will try both. Rick Gordon Steve deRosier wrote: Hi Rick, I spend most of my time editing files that are on Linux boxes where I've got ssh access only. I add this to my .bashrc: export REMOTEHOST=`echo $SSH_CLIENT | cut -d

Re: BBEdit or BBEdit-Like Editor Running Directly in Terminal

2023-04-03 Thread Rick Gordon
Thanks, Gregory, but what's the advantage of that (except for a mounted filesystem) vs using BBEdit opening via FTS/SFTP Server (which is what I already do)? Does it give me a BBEdit-like Terminal editor? Rick Gordon 'Gregory Shenaut' via BBEdit Talk wrote: You could consider using

Re: BBEdit or BBEdit-Like Editor Running Directly in Terminal

2023-04-03 Thread Rick Gordon
I am aware that I can open a document in my local BBEdit via Open from FTP/SFTP Server… I'm just looking for a more direct in-Terminal option. -- Rick Gordon wrote: Is there any way to get a subset of BBEdit-like functionality in a Terminal editor? I often use BBEdit as a means

BBEdit or BBEdit-Like Editor Running Directly in Terminal

2023-04-03 Thread Rick Gordon
Thanks. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email

Re: Copy markdown as HTML

2022-11-08 Thread Rick Gordon
I suspect that the information on this page, referring to the python3-markdown utility, could be used, along with BBEdit's ability to run terminal commands and/or text filters. http://tuxdiary.com/2016/06/30/markdown-to-html-terminal Rick Gordon On November 7, 2022 at 1:15:10 PM [-0800

Re: How Can I Search for All Lines NOT Matching a Complex Regex String

2020-04-30 Thread Rick Gordon
Thanks, Neil. I'd been hoping to avoid scratch documents, but that WOULD do the job, so why not? Thanks again, Rick Gordon On April 30, 2020 at 5:08:11 PM [-0700], Neil Faiman wrote in an email entitled "Re: How Can I Search for All Lines NOT Matching a Complex

How Can I Search for All Lines NOT Matching a Complex Regex String

2020-04-30 Thread Rick Gordon
by some more text …how should I proceed? Is there a regex that can match those, or do I need a more complex approach. I ultimately want to get a string of the unmatched lines (preferably with line numbers) to throw into a dialog. Thanks. ___ RICK GORDON

Re: Grep for removing injection spam links in a database or html

2020-01-30 Thread Rick Gordon
One thing to watch for is that in your search, you are looking for curly quotes (actually a mix of straight and curly quotes), which should all be straight. Rick Gordon On January 30, 2020 at 2:18:30 PM [-0800], Jefferis Peterson wrote in an email entitled "Re:

Re: Dual Monitor Annoyances

2019-11-01 Thread Rick Gordon
I have also found this to be the case with BBEdit 12.x. And it's compounded by my use of separate Mission Control spaces on each desktop, so that I am often rummaging through space trying to relocate my Find window. Rick Gordon On November 1, 2019 at 6:56:58 PM [-0700

Re: visual "not found" indicator when searching?

2019-05-31 Thread Rick Gordon
chine on a search fail? If I have the machine muted, I'm not getting the feedback I need. :( Argh... now the one with the sound only has nothing: no sound, no visual overlay! Help! _______ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___

Re: BBEdit 12.6 Sandboxed?

2019-02-26 Thread Rick Gordon
got this idea that there is a security/functionality tradeoff with sandboxing. Rick Gordon On February 26, 2019 at 4:33:02 PM [-0800], Patrick Woolsey wrote in an email entitled "Re: BBEdit 12.6 Sandboxed?": On 2/26/19 at 4:51 PM, krem...@kreme.com (@lbutlr) wrot

Re: Osascript/tcsh Question

2018-12-16 Thread Rick Gordon
works fine. Only if I include the quotes like you have it does it fail with your error message. Perhaps you're over thinking it? - Steve On Sat, Dec 15, 2018 at 2:17 PM Rick Gordon wrote: Not specifically a BBEdit question, but I know that there are people on the list here that can clarify this for

Osascript/tcsh Question

2018-12-15 Thread Rick Gordon
vents" to quit application process "\!*"'\' But I get the error: syntax error: A identifier can’t go after this “"”. (-2740) Can someone please clarify. Thank you. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___

Re: Display instances of selected text - color highlight

2018-09-26 Thread Rick Gordon
request, please. Thanks, Rick Gordon On September 26, 2018 at 6:10:52 PM [-0700], Rich Siegel wrote in an email entitled "Re: Display instances of selected text - color highlight": On 9/26/18 at 3:10 AM, mrc...@gmail.com (mrcmrc) wrote: yes, I tried in Preferen

Edit Source Code with jQuery ??

2018-08-15 Thread Rick Gordon
tricky in linear text. Thanks. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would

Re: Possibility of bbedit Terminal Command on SSH Connections

2018-07-11 Thread Rick Gordon
Figured it out. I forgot that I needed to supply an alternate port number. Thanks. That's awesome! Rick Gordon On July 11, 2018 at 6:14:44 PM [-0700], Rick Gordon wrote in an email entitled "Re: Possibility of bbedit Terminal Command on SSH Connections": Ste

Re: Possibility of bbedit Terminal Command on SSH Connections

2018-07-11 Thread Rick Gordon
for any suggestions. Rick Gordon On July 11, 2018 at 5:54:03 PM [-0700], Steve Derosier wrote in an email entitled "Re: Possibility of bbedit Terminal Command on SSH Connections": export REMOTEHOST=`echo $SSH_CLIENT | cut -d ' ' -f 1` export HOSTIP=`echo $SSH_

Possibility of bbedit Terminal Command on SSH Connections

2018-07-11 Thread Rick Gordon
to the basic syntax for the command-line executable as used on the Mac, such as: bbedit path-to-file Does that even make any sense, in term of logistics? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING

Re: Another Newbie GREP help request...

2018-05-18 Thread Rick Gordon
diacriticals/accents any number (including zero) of non-period characters (which may include other punctuation, spaces, line breaks, etc.) a period Does that work, or do you need to be more specific? Rick Gordon On May 18, 2018 at 1:33:08 AM [-0700], Matthew London wrote

Where Are Backup/Temp Files for SFTP Files

2018-04-09 Thread Rick Gordon
I thought that I used to find them in ~/Library/Caches/com.barebones.bbedit/FTPTemp, but now I just find empty folders there. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http

Re: Newbie Question on Text Wrap

2018-03-28 Thread Rick Gordon
Actually, checking further, the discretionary line break character in InDesign is encoded as a zero width space [ UTF-8 (hex): 0xE2 0x80 0x8B (e2808b) ]. Rick Gordon On March 28, 2018 at 9:35:27 PM [-0700], Rick Gordon wrote in an email entitled "Re: Newbie Que

Re: Newbie Question on Text Wrap

2018-03-28 Thread Rick Gordon
re of line breaks. Yes, that's why I was proposing that some other "non-blessed" character like U+0085 might be able to function as a visible line break that does not increment the line count. Rick Gordon On March 28, 2018 at 9:18:02 PM [-0700], Christopher Sto

Re: Newbie Question on Text Wrap

2018-03-28 Thread Rick Gordon
in v9.3.1 and as an upside-down question mark with no line break in 12 ,1,2. Rick Gordon On March 28, 2018 at 7:55:41 PM [-0700], Rick Gordon wrote in an email entitled "Re: Newbie Question on Text Wrap": There is a difference, though it's different from what

Re: Newbie Question on Text Wrap

2018-03-28 Thread Rick Gordon
be some other horizontal space character that looks like a space. Rick Gordon On March 28, 2018 at 7:39:57 PM [-0700], Patrick Woolsey wrote in an email entitled "Re: Newbie Question on Text Wrap": On 3/28/18 at 3:11 PM, li...@rickgordon.com (Rick Gordon) wrote:

Re: Newbie Question on Text Wrap

2018-03-28 Thread Rick Gordon
pastes without changing anything? _______ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would

Re: Character That Shows As Vertical Space But Is Within Paragraph Boundaries

2018-03-28 Thread Rick Gordon
uld modify the behavior of the internal equalization of \n and \r. I can't set up an example now, but could later. Rick Gordon On March 28, 2018 at 11:53:37 AM [-0700], Patrick Woolsey wrote in an email entitled "Re: Character That Shows As Vertical Space But Is W

Re: Character That Shows As Vertical Space But Is Within Paragraph Boundaries

2018-03-28 Thread Rick Gordon
[-0700], Rick Gordon wrote in an email entitled "Character That Shows As Vertical Space But Is Within Paragraph Boundaries": Does BBEdit support a character which would show as vertical space, but will be parsed as an inter-paragraph character? Something like a soft return (or more accurate

Re: HTML authoring - specifying a font

2018-03-16 Thread Rick Gordon
ily along with other attributes such as font-size, etc..) Rick Gordon On March 16, 2018 at 2:46:35 PM [-0700], Rick Gordon wrote in an email entitled "Re: HTML authoring - specifying a font": The one possible consideration where it might be considered acceptable is in H

Re: HTML authoring - specifying a font

2018-03-16 Thread Rick Gordon
elements which are defined in your CSS document(s) — ideally, not even to use inline CSS. Rick Gordon On March 16, 2018 at 2:29:55 PM [-0700], Rick Gordon wrote in an email entitled "Re: HTML authoring - specifying a font": Technically, you could, but it's considere

Re: HTML authoring - specifying a font

2018-03-16 Thread Rick Gordon
also be included.) Rick Gordon On March 16, 2018 at 2:22:52 PM [-0700], Nori Muster wrote in an email entitled "Re: HTML authoring - specifying a font": Thanks David - this may be a good alternative to learning CSS like everyone else recommended, but maybe it's ab

Re: HTML authoring - specifying a font

2018-03-15 Thread Rick Gordon
there. The one possible consideration where it might be considered acceptable is in HTML email, but even there, you should assign it as CSS (using font-face or font-family). Don't do it! Rick Gordon On March 15, 2018 at 6:25:38 PM [-0700], Nori Muster wrote in an email

Re: Regex to Escape Regex Characters in Any String

2018-03-09 Thread Rick Gordon
Why, yes. I wasn't aware that that handled escaping. Perfect! Thanks, Rick Gordon On March 9, 2018 at 3:16:24 PM [-0800], Roland Küffner wrote in an email entitled "Re: Regex to Escape Regex Characters in Any String": Apologies if I'm totally wrong on what you

Re: Regex to Escape Regex Characters in Any String

2018-03-08 Thread Rick Gordon
I meant "use the result IN a (longer) regex string" not "as a regex string." On March 8, 2018 at 8:20:15 PM [-0800], Rick Gordon wrote in an email entitled "Re: Regex to Escape Regex Characters in Any String": …so that I can use the result as

Re: Regex to Escape Regex Characters in Any String

2018-03-08 Thread Rick Gordon
more than what I've already suggested, but maybe I'm missing something. Rick Gordon On March 8, 2018 at 8:12:17 PM [-0800], Tom Robinson wrote in an email entitled "Re: Regex to Escape Regex Characters in Any String": I suspect you’re opening a can of worms. Can yo

Re: Regex to Escape Regex Characters in Any String

2018-03-08 Thread Rick Gordon
The purpose of this, in case I've been unclear, is to prepare a target string to be able to be used as the Find string fro a regex search. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http

Re: Regex to Escape Regex Characters in Any String

2018-03-08 Thread Rick Gordon
I see that I also need other searches to escape tabs and returns: FIND: \t CHANGE TO: \\t and FIND: \r CHANGE TO: \\r On March 8, 2018 at 5:48:15 PM [-0800], Rick Gordon wrote in an email entitled "Regex to Escape Regex Characters in Any String": I'm trying to

Regex to Escape Regex Characters in Any String

2018-03-08 Thread Rick Gordon
___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.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...@barebone

Re: Linux Hard Links

2018-02-25 Thread Rick Gordon
A quick test using an SFTP connection seems to confirm that they do work, but I wondered if there might be conditions that I should be wary of where it could break. On February 25, 2018 at 3:53:28 AM [-0800], Rick Gordon wrote in an email entitled "Linux Hard Links&q

Linux Hard Links

2018-02-25 Thread Rick Gordon
If I make a hard link to a file on a Linux server and edit the the hard link with BBEdit 12.x, will the hard link be maintained, or will it become an independent file? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING

Re: HTML5 support

2018-01-23 Thread Rick Gordon
support. This is much simpler than the former doctypes, and shorter, making it easier to remember and reducing the amount of bytes that must be downloaded. Rick Gordon On January 23, 2018 at 4:20:08 PM [-0800], Sam Hathaway wrote in an email entitled "Re: HTML5 support

Re: HTML5 support

2018-01-23 Thread Rick Gordon
oup, send email to bbedit@googlegroups.com <mailto:bbedit@googlegroups.com>. Visit this group at https://groups.google.com/group/bbedit. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.s

Re: Change File Size Calculation in FTP Browser

2018-01-16 Thread Rick Gordon
Or actually, the reverse: Kilobytes as 1024 bytes rather than 1000. On January 16, 2018 at 12:52:05 AM [-0800], Rick Gordon wrote in an email entitled "Change File Size Calculation in FTP Browser": The difference is that the Finder number in MB is 1.048576 (1

Change File Size Calculation in FTP Browser

2018-01-16 Thread Rick Gordon
assuming that BBEdit is calculating kilobytes as 1000 bytes rather than 1024. Is there a preference to change this behavior? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com

Re: Where are unsaved files held?

2018-01-04 Thread Rick Gordon
find no other non-Apple applications putting their own folder directly into ~/Library, and I thought that Application Support was the Apple-recommended folder for application data. Rick Gordon On January 4, 2018 at 2:16:24 PM [-0800], Mark Mcleod wrote in an email entitled

Re: Max Character Length of Search String / Trimming Unsubscribed Addresses from List

2017-12-19 Thread Rick Gordon
Thanks. I will double-check for that. I appreciate your input. Rick On December 19, 2017 at 2:39:45 AM [-0800], @lbutlr wrote in an email entitled "Re: Max Character Length of Search String / Trimming Unsubscribed Addresses from List": On 18 Dec 2017, at 22:38, R

Re: Max Character Length of Search String / Trimming Unsubscribed Addresses from List

2017-12-18 Thread Rick Gordon
Just FYI — though I'm sure that I could bump into limits — a grep string containing 182 addresses, configured as: us...@itote.com\r|us...@amherst.edu\r|us...@yahoo.com\r| (… etc., replacing with nothing) …worked with no problem. Rick Gordon On December 18, 2017 at 9:34

Re: Max Character Length of Search String / Trimming Unsubscribed Addresses from List

2017-12-18 Thread Rick Gordon
Wow, thanks, Christopher and @lbutlr! Plenty of great ideas here. Rick Gordon On December 18, 2017 at 2:59:00 PM [-0800], Christopher Stone wrote in an email entitled "Re: Max Character Length of Search String / Trimming Unsubscribed Addresses from List": On

Max Character Length of Search String / Trimming Unsubscribed Addresses from List

2017-12-17 Thread Rick Gordon
or unsubscribed addresses. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report

Re: Preference to Reopen Files on Remote Severs Automatically?

2017-05-18 Thread Rick Gordon
Thanks, Rich. And for reference, the answer is: defaults write com.barebones.bbedit PromptToReopenRemoteDocuments NO Rick Gordon On May 18, 2017 at 12:43:12 PM [-0700], Rich Siegel wrote in an email entitled "Re: Preference to Reopen Files on Remote Severs Automati

Preference to Reopen Files on Remote Severs Automatically?

2017-05-18 Thread Rick Gordon
I often keep a group of files on remote webservers open for easy editing. Is there a preference that can be set to eliminate the prompt to reopen files on remote servers when launching BBEdit, and have them just reopen automatically? ___ RICK GORDON

Re: Grep RegEx help

2017-01-27 Thread Rick Gordon
You just need to add a question mark after the asterisk, to make it not greedy. (?s).*? Or, if you just wanted to get to what's inside the tags, make it: (?<=\n)(?s).*?(?=\n) Rick Gordon On 1/27/17, 2:40 PM Neal Pozner said: I have some XML that looks like as foll

Re: Selectively Clearing Recents

2017-01-27 Thread Rick Gordon
Perfect. Thanks, Michael. Rick Gordon On 1/26/17, 8:13 PM 'Michel Maybon' via BBEdit Talk said: Hello. Supposing you are talking about the menu "Open Recent": - Quit BBEdit - modify the RecentItems:ItemData part of /Users/account>/Librar

Selectively Clearing Recents

2017-01-25 Thread Rick Gordon
Is there a way to selectively clear Recent items without clearing everything? I don't mind editing a .plist file, if that's what's necessary. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http

Open .JAR File as Project

2016-11-10 Thread Rick Gordon
Is there a way for BBEdit to access a .jar file as a project? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have

Re: Dropbox sync when using Dropbox for Business

2016-10-10 Thread Rick Gordon
nience, and I'm sorry - but we have provided a workable solution, and one that won't break whenever Dropbox decides to make another change (as, it appears, they already did by switching to JSON). R. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONS

Re: Sort email addresses by domain name...

2016-07-06 Thread Rick Gordon
this helps, [fletcher] ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would like

Re: Sort an email list by domain name...

2016-07-06 Thread Rick Gordon
:39 AM, Bo wrote: How do I sort an an email list by domain name? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you

Reopen Docs that Were Open at Last Quit Without Confirmation Dialog

2016-03-09 Thread Rick Gordon
to accept that dialog query. ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report

Re: Email Address From BBEdit List Crashes Mail App

2015-10-17 Thread Rick Gordon
FWIW, using Postbox 3.x and POP delivery, I have no problem with his emails. Rick Gordon - On 10/16/15, 9:10 PM, WordWeaver777 wrote: Dear BBEdit list friends, Let me start by saying that it is *not* my intention to start anything personal here, and I hope that the person

Repeated Application of Regex

2015-09-25 Thread Rick Gordon
Is there a way, within the BBEdit interface (as opposed to looping a regex in AppleScript) to repeat running a regex until it fails? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http

Re: Repeated Application of Regex

2015-09-25 Thread Rick Gordon
It's not. In this regex, to replace characters within a span to a "redacted" character, with Grep and Wrap around enabled, it takes repeated presses of Replace All (one press per replaced character) to get the job done. FIND: ()(█*)[^>█]([^>]*)() REPLACE: \1\2█\

Change Underlined Same-Word Variables, etc. to Background-Colored ??

2015-07-26 Thread Rick Gordon
Is it possible to change a setting so that when you click in a given word, and all instances of the same word are underlined, to change that something more visible, like a background color? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING

Re: another TOC-regex related question

2014-12-16 Thread Rick Gordon
Support/BBEdit/Scripts, right? Rick Gordon - On 12/16/14 5:41 PM, Vlad Ghitulescu wrote: Hello! Strange, that doesn’t work anymore… Am 16.12.2014 um 08:09 schrieb Rick Gordon li...@rickgordon.com mailto:li...@rickgordon.com: tell application BBEdit 10 to set myText

Re: another TOC-regex related question

2014-12-14 Thread Rick Gordon
9:57 PM, Rick Gordon wrote: To my knowledge, you could not do this with regex alone, but it would be easy to do in any scripting language. (I'd use AppleScript, but only because I know it reasonably well, so it's my go-to language.) But it should be easy in Perl, Python, or any of the other

Re: How to change a TOC with text factories (or AppleScript or RegEx)?

2014-12-08 Thread Rick Gordon
Try this: FIND (grep): ^\s*(.+) *\r\s*(\d+[0-9ms ]+) *$ REPLACE WITH: \1\t\2 Rick Gordon - On 12/8/14 12:03 AM, Vlad Ghitulescu wrote: Hello! Copying and pasting the TOC of the Up and Running with AppleScript http://www.lynda.com/AppleScript-tutorials/Up-Running

Re: How to change a TOC with text factories (or AppleScript or RegEx)?

2014-12-08 Thread Rick Gordon
a tab character \2 means the 2nd captured string Yes. It's such a major part of BBEdit's power; you should learn it before AppleScript (or at least learn it, AppleScript or no). Rick Gordon - On 12/8/14 12:25 AM, Vlad Ghitulescu wrote: Hi, Rick! It works like magic

Re: How to change a TOC with text factories (or AppleScript or RegEx)?

2014-12-08 Thread Rick Gordon
Yes, just add an h into the set between the square brackets (order really doesn't matter): (\d+[0-9hms ]+) Rick Gordon - On 12/8/14 2:18 AM, Vlad Ghitulescu wrote: Thanks, Rick! Now I understand also why the script just didn’t work with a longer than an hour chapter (1h

Re: Tidy Retired

2014-10-27 Thread Rick Gordon
=display:inline-blockImage_1/aimg src=x2 style=display:inline-blockImage_2/a ... would not. Rick Gordon - On 10/27/14 12:42 PM, Ted Stresen-Reuter wrote: On Oct 27, 2014, at 4:57 PM, Andy Knasinskiandyk...@gmail.com wrote: It's not exactly the same, I suppose, but it should be good

Modifying Double-Click Behavior

2014-08-08 Thread Rick Gordon
Is there a setting to modify double-click behavior so that an underscore would act as a word delimiter? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com

Re: Modifying Double-Click Behavior

2014-08-08 Thread Rick Gordon
(Sorry for the previous HTML-formatted message.) Is there a setting to modify double-click behavior so that an underscore would act as a word delimiter? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING

Re: Any Way to Save Find All Results with Interface?

2014-07-17 Thread Rick Gordon
Thanks, Donna and all. As I can't get into all the info on creating a plugin at this moment (and if this being OT to BBEdit), can you comment on the efficacy of plugin hooks vs. modifying functions.php? Thanks. Rick Gordon Donna McMaster July 17, 2014 1:48 PM

Re: Any Way to Save Find All Results with Interface?

2014-07-17 Thread Rick Gordon
Apologies for forgetting to trim my last post. -- 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: http://www.twitter.com/bbedit

Re: Any Way to Save Find All Results with Interface?

2014-07-17 Thread Rick Gordon
To at least start to answer my own question: http://tommcfarlin.com/functions-php-vs-plugin-who-wins/ Rick Gordon July 17, 2014 2:36 PM Thanks, Donna and all. As I can't get into all the info on creating a plugin at this moment (and if this being OT to BBEdit), can

Re: Any Way to Save Find All Results with Interface?

2014-07-16 Thread Rick Gordon
filtered one. Rick Gordon On 7/16/14 2:19 AM, G. T. Stresen-Reuter wrote: Not that I'm aware of, but you can save searches. I know that's not exactly the same thing but if you can describe what you will be using those results for, maybe we can suggest alternatives

Any Way to Save Find All Results with Interface?

2014-07-15 Thread Rick Gordon
Is there any way to save the results from a Find All page so that, when reopened, it will look like and respond like original Find All page, rather than just a text file? ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING

Re: Opening Text Factory as Editable XML

2014-04-28 Thread Rick Gordon
XML to build the whole text factory automatically. So I regexed my list and copied the result into the text factory which was open as text in TextEdit. It just seemed silly to have to detour to TextEdit to do that. Rick Gordon -- Patrick Woolsey wrote: On 4/28/14 at 5:28 PM, li

Re: Need help with GREP search

2014-04-26 Thread Rick Gordon
Or really. just: ^ +-+.+\r([^-]+\r){4} ...since I'm assuming that only the separator lines could have a hyphen, and that there are no hyphens (including negative numbers), that could appear in the other lines. Rick Gordon - Rick Gordon wrote: Try

Re: Need help with GREP search

2014-04-26 Thread Rick Gordon
I think that perhaps my solution wouldn't work if your target were in the first group before the first separator. Rick Gordon -- Rick Gordon wrote: Or really. just: ^ +-+.+\r([^-]+\r){4} ...since I'm assuming that only the separator lines could have a hyphen

Re: Need help with GREP search

2014-04-26 Thread Rick Gordon
This would work, though: (?:(?:^ +-+.+\r)|(?:^\s*\r))([^-]+\r){4} Rick Gordon - Rick Gordon wrote: I think that perhaps my solution wouldn't work if your target were in the first group before the first separator. Rick Gordon -- Rick Gordon wrote: Or really. just

FEATURE REQUEST: Regex Subtraction and Intersection

2014-03-04 Thread Rick Gordon
/charclassintersect.html http://www.regular-expressions.info/xmlcharclass.html -- ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk

Re: Searching for files of a particular line break type

2013-07-29 Thread Rick Gordon
-- ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.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

RE: Epubs, html, and smart quotes

2013-07-09 Thread Rick Gordon
Maybe educate them first, and then do a regex like the following repeatedly until it fails: FIND: ([^]*)[“”]([^]*) CHANGE TO: \1\2 Rick Gordon -- On 7/9/13 at 8:51 AM -0700, Jon wrote in a message entitled Epubs, html, and smart quotes: I'm editing an epub with the current

Re: ePub files in a BBEdit Project?

2013-05-29 Thread Rick Gordon
for some reason? Thanks. On Monday, May 20, 2013 4:00:41 AM UTC-7, Rick Gordon wrote: Drag the EPUB file onto the BBEdit 10.x icon. It will open as a project. -- On 5/19/13 at 9:03 AM -0700, wil...@wlbentley.com wrote in a message entitled ePub files in a BBEdit Project?: Hello

Re: Using BBEdit to make an ePub

2013-05-06 Thread Rick Gordon
it with a space. Rick Gordon -- On 5/6/13 at 8:28 AM -0700, Christopher Finazzo wrote in a message entitled Re: Using BBEdit to make an ePub: If you want to download the zip tool or see the commands they used, it is can be found at this MobileRead forum thread. On Monday, May 6

Re: Ways to get SFTP files into Projects

2013-05-02 Thread Rick Gordon
Title: Re: Ways to get SFTP files into Projects I'm just dealing with this today too, so late to the party. But how about an Open As Project button in the Open dialog, at least for Open from FTP/SFTP Server? Rick Gordon -- On 2/15/13 at 9:11 PM -0600, Christopher Stone wrote

  1   2   >