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: BBEdit Environment for html

2024-01-29 Thread Rick Yentzer
I think Local is the easiest to quickly get up and running. Mamp is good too. DevKinsta is another one that Docker containers, but it really easy to use. Of these three, I'd choose Local or Mamp. If you want to piece it together yourself, you can install php with Homebrew on the command line.

Re: BBEdit 15.0 and Sonoma

2024-01-11 Thread Rick Yentzer
None here either! On Wednesday, January 10, 2024 at 8:18:59 PM UTC-5 Maxime Audet wrote: > No problem here! > > On Tuesday, January 9, 2024 at 9:58:41 PM UTC-5 Bruce Van Allen wrote: > >> None over here >> >> — Bruce >> >> _bruce__van_allen__santa_cruz_ca_ >> >> >> > On Jan 9, 2024, at 6:27 

Re: Automatically indent python code

2024-01-08 Thread Rick Yentzer
Hi Claudio, I mainly use Black for Python formatting as well. They have nice documentation that shows how to customize its output. That may get you closer to what you want. https://black.readthedocs.io/en/stable/index.html On Wednesday, December 27, 2023 at 2:11:06 PM UTC-5 Todd Ingalls wrote:

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: Need help with Bash text filter

2022-12-29 Thread Rick Yentzer
Thank you Jean, That was very helpful and I was able to get it working with a few adjustments. Do you have recommendations on learning more about shell scripting and setting up some of these types of command line tools to work with BBEdit? On Thursday, December 29, 2022 at 2:30:43 AM UTC-5 jj

Re: Need help with Bash text filter

2022-12-28 Thread Rick Yentzer
Thank you! I came here wondering why a text filter wasn't working, but it did when run in terminal. Mine was the same issue. I was passing the text contents instead of the file which php-cs-fixer expects. Oh well, guess I'll just keep terminal open when needed. On Tuesday, December 20, 2022 at

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: Color scheme vs. color space question

2020-10-02 Thread Rick Yentzer
Hey Watts, I've seen the same thing happen that you describe. In the past, I have copied the correct color value and then adjust visually to get a closer match. On Friday, October 2, 2020 at 6:41:04 AM UTC-4 Greg Raven wrote: > The release notes from last night include this item: > > *

Re: Cobalt2 color scheme

2020-10-02 Thread Rick Yentzer
Here is a first pass at the cobalt2 theme. I didn't go through every setting as I don't use some of them day-to-day, but I hope this is a good start. On Thursday, October 1, 2020 at 9:44:06 AM UTC-4 Greg Raven wrote: > If you think it will help, I'd be happy to share my Color Scheme file. >

Re: Cobalt2 color scheme

2020-10-01 Thread Rick Yentzer
I've converted a couple of themes over the years, but it's been a long time. I would be interested in porting some themes over though. I use One Dark in PyCharm quite a bit. I'm familiar with Cobalt 2 also. When I get some free time, I'll try to make one. I would like to see the Wiki updated

Re: Can BBEdit format code like it formats HTML?

2020-09-19 Thread Rick Yentzer
Hey James, BBEdit formats only html and css to the best of my knowledge. Like Steve, I have used command line utilities if I needed additional formatting for other languages. I mostly work with web languages and python/php and have my build tools set to format if needed. Hope that helps. On

Re: way to exclude folders from Site search, updates and syntax check?

2020-07-04 Thread Rick Yentzer
This would be a helpful addition to keep from searching in folders one would not need to look in. For instance, I would not necessarily need to search "node_modules", or "env" folders. The "node_modules" folder can get fairly large. Thanks, Rick Yentzer On Friday

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: Help with Ctags

2020-03-12 Thread Rick Yentzer
Hey Vlad, Your post got me thinking about it so I tried something similar and it wasn't working like I "thought" it would. Per Rich's post it looks like it will not be possible with ctags to go to the "definition" of a css class. Thanks, Rick On Thursday, March 12, 2020

Re: Python3 Shebang Woes

2020-03-11 Thread Rick Yentzer
Paul, Have you tried to run that file from the command line? I wonder if BBEdit is not finding python3 in your $PATH variable. #!/usr/local/bin/python3 print('Hello World') I created a test file with my location of python 3 and BBEdit ran the file correctly. python 3 is in my $PATH varaible.

Re: How do you set the python interpreter BBEdit uses?

2020-03-11 Thread Rick Yentzer
that if your PATH contains entries relative to the current working directory, those entries are not likely to work since $PWD is undefined for a GUI application, though absolute paths will work. Hope that helps. Thanks, Rick Yentzer On Wednesday, March 11, 2020 at 6:06:02 PM UTC-4, leecreighton wrote

Help with Ctags

2020-03-11 Thread Rick Yentzer
" c line:8 But, when I select "btn" in index.html and go to Menu>Search>Find Definition, all I get is a "beep" sound and nothing happens. What am I missing, or doing wrong? Thanks, Rick Yentzer -- This is the BBEdit Talk public discussion group. If you have a f

Re: How to jump to a CSS-class from the HTML-file

2020-03-10 Thread Rick Yentzer
? Any takers? :) Thanks, Rick Yentzer On Thursday, March 5, 2020 at 7:06:20 AM UTC-5, Vlad Ghitulescu wrote: > > Hey! > > Is there a way in BBEdit to jump right to the definition of the CSS-class > from within a HTML-file where this class is used? > > Like in this HTML-f

Re: Can Completion work with underscores?

2020-02-22 Thread Rick Yentzer
elements*. If this doesn't work, send a help request. They're usually pretty quick to respond. Thanks, Rick On Thursday, February 20, 2020 at 9:56:31 AM UTC-5, Ed Leafe wrote: > > I write a lot of Python, and following the PEP8 standards, long variable > names are written using un

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: React (JSX) support

2019-08-20 Thread Rick Yentzer
I understand. If things change, I'll post here to update you. Thanks, Rick On Tuesday, August 20, 2019 at 5:03:10 PM UTC-4, Carl Bolduc wrote: > > Hi Rick, > > Hey Carl, did you try to contact BBEdit support to find out? > > > No... in the end, I don't have time to work o

Re: React (JSX) support

2019-08-20 Thread Rick Yentzer
Hey Carl, did you try to contact BBEdit support to find out? – Rick On Thursday, March 7, 2019 at 9:00:25 AM UTC-5, Hoger November wrote: > > Hi, > > I’m not sure, but sup...@barebones.com will likely have an > answer for you ;) > > Cheers, > Holger > > On 7 Mar

Re: React.js - Clippings and syntax highlighting?

2019-08-20 Thread Rick Yentzer
I have not seen one out in the wild. The one you linked to could be ported over. I"m curious about JSX syntax highlighting as well. I haven't tried bbedit with angular or vue yet to see how those syntaxes are handled. – Rick Yentzer On Tuesday, April 2, 2019 at 9:53:27 AM UTC-4, Ch

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
I wonder if this is, in fact, related to my question on vertical space characters. I believe that InDesign uses \n as a line break character and \r as a paragraph return, so I wonder if the changes introduced in BBEdit 10.5 concerning the parsing of those characters might be an issue. Rick

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
Doctype is not used in HTML5, which is not SGML-based, and is built to be forgiving of older styles of coding. https://www.w3schools.com/tags/tag_doctype.asp Differences Between HTML 4.01 and HTML5 There are three different declarations in HTML 4.01. In HTML5 there is only one: Rick

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

Keeping window width when toggling sidebar

2017-04-11 Thread Rick Yentzer
I would like for the toggling of the sidebar to not affect the width of the window. I'd prefer the sidebar and content area to use the same window width. I typically use an app to set my window sizes for BBEdit, iTerm, and Chrome. I have them close together so I can easily see each while I'm

Re: Customer post: How to quickly create html form-fields via grep search & replace

2017-02-25 Thread Rick Yentzer
That was really helpful. If also gives ideas for other ways to use grep and replace together in html and the like. On Thursday, February 23, 2017 at 2:53:14 PM UTC-5, Patrick Woolsey wrote: > > Good afternoon folks, > > We just heard from a customer who's written a handy tutorial > about

Re: BBEdit and Kite

2017-02-16 Thread Rick Yentzer
I saw Kite a while back and it looked interesting. But, I'm content with my current setup of using Dash as my "Find in Reference". It's there when I need it and out of the way when I don't. On Saturday, February 11, 2017 at 11:24:29 PM UTC-5, Jim Scheller wrote: > > As somebody who basically

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

Re: minify css

2016-12-13 Thread Rick Yentzer
Christopher, I'm envious of your AppleScript and shell knowledge. You always have a solution for those on this board. Kudos! Rick On Monday, December 12, 2016 at 5:25:44 PM UTC-5, Christopher Stone wrote: > > On Nov 25, 2016, at 16:48, Venmore <ven...@gmail.com> wrote: > > Wh

Re: minify css

2016-12-12 Thread Rick Yentzer
This is bad advice. Javascript is also just text, but the developer should always look for ways to improve site loading speed and performance. Minification of CSS and JS and even HTML is standard within the web development industry. On Friday, December 2, 2016 at 1:47:16 AM UTC-5, Lewis

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

Re: [ANN] BBEdit 11.6 (3939) pre-release

2016-06-21 Thread Rick Yentzer
After updating to this version, when I click on an html file in the Document Drawer, it now opens the file in my default browser instead of BBEdit. I now have to right-click the document and select "Open as Selection". I did not have this behavior in the previous version. Th

Re: Emmet support

2016-03-19 Thread Rick Yentzer
some of Emmet's features to TextExpander but I would lose some of it features, but I could live with that. I'll be reading up on the article Rich posted. Thanks, Rick On Tuesday, October 28, 2014 at 1:24:23 PM UTC-4, Maarten Sneep wrote: > > > > On 28 Oct 2014, at 15:51, Rich

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

  1   2   3   >