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

2023-04-03 Thread Rick Gordon
that are available, and am just looking at ci-edit <https://github.com/google/ci_edit>, though it seems sluggish. > > I'd appreciate any suggestions here. Thanks. > > ___ > RICK GORDON > EMERALD VALLEY GRAPHICS AND CONSULTING >

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

2023-04-03 Thread Christopher Waterman
> ___ > 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...@barebones.com" > rather than posting here. Follow @bbe

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

2023-04-03 Thread Rick Gordon
dit 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:<https://twitter.com/bbedit> --- You received this message because you are subscribed to the Google G

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

2023-04-03 Thread Steve deRosier
. > > > > _______ > > RICK GORDON > > EMERALD VALLEY GRAPHICS AND CONSULTING > > ___ > > WWW: http://www.shelterpub.com > > > > -- > > This is the BBEdit Talk publi

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

2023-04-03 Thread 'Gregory Shenaut' via BBEdit Talk
PHICS 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...@barebones.com" > rather than posting

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

2023-04-03 Thread Rick Gordon
EY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com ___ RICK GORDON EMERALD VALLEY GRAPHICS AND CONSULTING ___ WWW: http://www.shelterpub.com -- This is the BBEdit Talk public discussion group. If you have

BBEdit or BBEdit-Like Editor Running Directly in Terminal

2023-04-03 Thread Rick Gordon
gestions here. 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 suppor

Adding code languages support (MJML)/Or an MJML interpretor?

2023-03-14 Thread David Viard
gt; Languages > Pane? - Where can I add (or contribute) specific markup —*meaning different than HTML/CSS which should be recognized or ignored (if error)—. * - Is there a file to edit? If not, is there a way to add a module (like VSCode has, which also generates a Preview via their

Re: Difference between Save or Save to FTP/SFTP - what is better?

2022-02-14 Thread Rich Siegel
On 14 Feb 2022, at 10:36, Omar KN wrote: > Not quite sure the difference between Save or Save to FTP/SFTP or Save a > Copy to FTP/SFTP Server. In a nutshell: - "Save to FTP/SFTP Server" is like Save As: after the operation is completed, the file's location is

Difference between Save or Save to FTP/SFTP - what is better?

2022-02-14 Thread Omar KN
Not quite sure the difference between Save or Save to FTP/SFTP or Save a Copy to FTP/SFTP Server. In my case, I don't care about preserving its line endings, I just want to **keep the file version which I just edited on my hard drive and also on the server.** Up to now, I have used the

Re: Need Grep help to get first digit (or letter) in each row

2022-01-17 Thread Howard
Thanks Tom and Christopher. Howard On Sunday, 16 January 2022 at 8:38:24 pm UTC-5 Christopher Waterman wrote: > Hello Howard, > > Find: ^[^0-9A-Z]?([0-9A-Z]).* > > Replace: \1 > > > > — Chris(topher)? > > -- This is the BBEdit Talk public discussion group.

Re: Need Grep help to get first digit (or letter) in each row

2022-01-16 Thread Tom Robinson
^[^a-z0-9]*(.).*$ ^ at beginning of line [^a-z0-9] look for anything which isn’t a-z 0-9 * 0 or more times (.) any single character (i.e. a-z 0-9), and ‘capture’ it for replacement pattern ★ any characters $ end of line Replace with \1 Cheers > On 2022-01-17, at 12:16, Howard wr

Need Grep help to get first digit (or letter) in each row

2022-01-16 Thread Howard
Using the *input data* below and using Grep, I need either the first digit or letter extracted from each row (just one per row), so the *output* looks like what is shown below. Though the output is displayed here in horizontal format, I need the actual output in vertical format without any

Re: Viewing or detecting a BOM in a file

2021-05-11 Thread Ted Stresen-Reuter
ll need to directly examine > the disk file and File -> Hex Dump File... should do the job. :-) > > > Regards, > > Patrick Woolsey > == > Bare Bones Software, Inc. <https://www.barebones.com/> > > > -- > This is the BBEdit Talk public discussi

Re: Viewing or detecting a BOM in a file

2021-05-11 Thread Patrick Woolsey
Regards, Patrick Woolsey == Bare Bones Software, Inc. <https://www.barebones.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 Twitte

Viewing or detecting a BOM in a file

2021-05-11 Thread Ted Stresen-Reuter
s 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: <https://twitter.com/bbedit> --- You received this message because you are subscribe

Re: BBEdit and scientific articles - autocomplete for citation keys (@Author2002) from bibtex file or Zotero?

2020-06-27 Thread Maarten Sneep
Hi, > On 2020-06-26, at 14:57, Rainer Krug wrote: > > I started using BBEdit for writing scientific articles. Is there a way, of > having autocomplete of the citation keys (e.g. Author2002) based on a bibtex > file or on Zotero? Not that I’m aware of. Of course once a cita

BBEdit and scientific articles - autocomplete for citation keys (@Author2002) from bibtex file or Zotero?

2020-06-26 Thread Rainer Krug
I started using BBEdit for writing scientific articles. Is there a way, of having autocomplete of the citation keys (e.g. Author2002) based on a bibtex file or on Zotero? Thanks, Rainer -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical

Re: Including "Sr." or "Jr." in name where applicable

2020-04-30 Thread '153957' via BBEdit Talk
First a reply to previous suggestions: Since {0,1} means 'this occurs 0 or 1 times' it can be replaces by ?, since that means the same. So the following also works: ^([a-z,A-Z,\.]+) ([a-z,A-Z]+(\s(jr|sr)\.?)?) Also the , in the [a-z,A-Z,\.] blocks are not necessary, if you do want t

Re: Including "Sr." or "Jr." in name where applicable

2020-02-29 Thread David G Wagner
It works but is not quite right. That period there should really be expanded to: \.{0,1} So it should read now as: > > ^([a-z,A-Z,\.]+) ([a-z,A-Z]+(\s(jr|sr)\.{0,1}){0,1}) > > > > Where my new part says: > > > > A space followed by either Jr or Sr and there will be

Re: Including "Sr." or "Jr." in name where applicable

2020-02-29 Thread 'anotherhoward' via BBEdit Talk
{0,1}) > > This would handle those who do not put a period after the Jr or Sr also. > > > Wags ;) > WagsWorld > Hebrews 4:15 > Ph(primary) : 408-914-1341 > Ph(secondary): 408-761-7391 > On Feb 29, 2020, 05:40 -0800, 'anotherhoward' via BBEdit Talk , wrote:

Re: Including "Sr." or "Jr." in name where applicable

2020-02-29 Thread David G Wagner
You could add: (\s(jr|sr).){0,1} within the last set of parens so would look like: ^([a-z,A-Z,\.]+) ([a-z,A-Z]+(\s(jr|sr).){0,1}) This would handle those who do not put a period after the Jr or Sr also. Wags ;) WagsWorld Hebrews 4:15 Ph(primary) : 408-914-1341 Ph(secondary): 408-761-7391 On

Including "Sr." or "Jr." in name where applicable

2020-02-29 Thread 'anotherhoward' via BBEdit Talk
t only all the original input items plus the two new cases. Further, what I would like extracted is everything up to but not including the backslash. This attempt (of mine) finds everything in the original dataset, but I was unable to expand it to include either the "Sr." or "Jr.&qu

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

2020-01-31 Thread Jefferis Peterson
THANK YOU!!! That worked!!! > > [^<]+<\/a> > -- 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: <https://twitte

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

2020-01-30 Thread GP
xonline.com";>buy valtrex online text preceeding . text succeeding . and applying the revised regular expression yields: test text text preceeding text succeeding text preceeding text succeeding -- This is the BBEdit Talk public discussion group. If you have a feature re

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

2020-01-30 Thread Rick Gordon
p for removing injection spam links in a database or html": Thank you GP That worked very well for 80 links, but i found another set of links masked by making the text invisible in the posts... http://alwaysvaltrexonline.com";>buy valtrex online There are 3 variations..

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

2020-01-30 Thread Jefferis Peterson
ind any text: [^”]* So i added it where the strings were for color and link text, but it did not find these type of strings: [^”]*<\/a> > Can you tell me what I did wrong? And are spaces ignored in the string? -- This is the BBEdit Talk public discussion group. If you have

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

2020-01-29 Thread GP
links that look > like this: > > > . >> >> > > Now the link varies inside the href and it might be for cialas or any > product, but the rest doesn't vary. I want to remove the entire LINK, so > the result is a single space. > > > I don't

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

2020-01-29 Thread Roland Küffner
nk varies inside the href and it might be for cialas or any > product, but the rest doesn't vary. I want to remove the entire LINK, so > the result is a single space. > > I don't know regex, so I would appreciate the help. I've tried online > regex generators but they do

Grep for removing injection spam links in a database or html

2020-01-28 Thread Jefferis Peterson
be for cialas or any product, but the rest doesn't vary. I want to remove the entire LINK, so the result is a single space. I don't know regex, so I would appreciate the help. I've tried online regex generators but they don't seem to be working. In this case, the html li

Re: Can I sort the file list by date (or another attribute) in disk browser view?

2019-08-19 Thread Peter Gallagher
I would like to know how to do this, too. I use BBEdit mainly for editing text, keeping notes. This is really essential for note keeping. Is there e.g. a 'hidden preference' (can't find it in the Help or Manual) Thank you, Peter On Thursday, September 15, 2016 at 2:52:36

Re: Bug or "Feature"?

2018-10-31 Thread Rod Buchanan
17:01, Steve deRosier wrote: > > BBEdit isn't checking the permissions at all. That's being handled by > the OS. Permission enforcement is almost always handled by the OS (or > filesystem driver, or similar), or at least OS-level stuff like the > shell. > > - Ste

Re: Bug or "Feature"?

2018-10-31 Thread Rod Buchanan
isn't checking the permissions at all. That's being handled by > the OS. Permission enforcement is almost always handled by the OS (or > filesystem driver, or similar), or at least OS-level stuff like the > shell. > > - Steve > > On Tue, Oct 30, 2018 at 12:31 PM S

Re: Bug or "Feature"?

2018-10-30 Thread Sam Hathaway
Permission enforcement is almost always handled by the OS (or filesystem driver, or similar), or at least OS-level stuff like the shell. - Steve On Tue, Oct 30, 2018 at 12:31 PM Sam Hathaway wrote: The /tmp symlink itself is 0755, but the directory it points to (/private/tmp) is 1777. I don’t

Re: Bug or "Feature"?

2018-10-30 Thread Steve deRosier
BBEdit isn't checking the permissions at all. That's being handled by the OS. Permission enforcement is almost always handled by the OS (or filesystem driver, or similar), or at least OS-level stuff like the shell. - Steve On Tue, Oct 30, 2018 at 12:31 PM Sam Hathaway wrote: &g

Re: Bug or "Feature"?

2018-10-30 Thread Sam Hathaway
/tmp. Is this a bug I should report, or a “feature” in OS X 10.14? Neither :-) but instead, the permissions on '/tmp' (which is a symlink) are different than those on '/private/tmp' (the actual directory), where is where navigating to '/tmp' via the Sa

Re: Bug or "Feature"?

2018-10-30 Thread Rod Buchanan
reate a new document (Cmd-N) and save it to /tmp. >> >> Is this a bug I should report, or a “feature” in OS X 10.14? >> > > Neither :-) but instead, the permissions on '/tmp' (which is a symlink) are > different than those on '/private/tmp' (the

Re: Bug or "Feature"?

2018-10-30 Thread Patrick Woolsey
) and save it to /tmp. Is this a bug I should report, or a “feature” in OS X 10.14? Neither :-) but instead, the permissions on '/tmp' (which is a symlink) are different than those on '/private/tmp' (the actual directory), where is where navigating to '/tmp'

Re: How do you folder (or project) name in the sidebar?

2018-02-18 Thread Kyle DeMilo
I drag the folder into the sidebar from the Finder. If you want to change the name, right-click on the item and choose Rename. Sent from my iPhone On Feb 17, 2018, at 10:24 PM, Hubert Halkin wrote: How do you folder (or project) name in the sidebar? -- This is the BBEdit Talk public

How do you folder (or project) name in the sidebar?

2018-02-17 Thread Hubert Halkin
How do you folder (or project) name in the sidebar? -- 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://ww

[INFO] making feature requests and/or dealing with unexpected behavior

2017-11-29 Thread Patrick Woolsey
Good morning folks and as a quick reminder: This is the BBEdit Talk public discussion group and all topics related to using BBEdit are welcome here. If however you have a feature request, or you encounter any unexpected behavior or need assistance with a problem, please contact tech support

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-08 Thread John Muccigrosso
Hear the lamentations of their [wo]men." > > Management regrets the error. > > :-), > Well, (wo)?men if you're going to find them all. -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email &q

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread Rich Siegel
Bare Bones Software, Inc. <http://www.barebones.com/> Someday I'll look back on all this and laugh... until they sedate me. -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem,

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread Kerri Hicks
ones.com/> > > Someday I'll look back on all this and laugh... until they sedate me. > > -- > This is the BBEdit Talk public discussion group. If you have a > feature request or would like to report a problem, please email > "supp...@barebones.com" rather

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread Rich Siegel
Bare Bones Software, Inc. <http://www.barebones.com/> Someday I'll look back on all this and laugh... until they sedate me. -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, plea

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread Gustave Stresen-Reuter
; >> >> >> On Thu, Sep 7, 2017 at 6:18 AM, bobembry wrote: >> >>> Hi friends >>> >>> What are the major ideas that BBEdit 12 development is working toward? >>> >>> Thanks >>> >>> Bob >>> >>> -- >&g

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread Kyle DeMilo
t;> What are the major ideas that BBEdit 12 development is working toward? >> >> Thanks >> >> Bob >> >> -- >> This is the BBEdit Talk public discussion group. If you have a >> feature request or would like to report a problem, please email >> &qu

Re: BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread David Eves
sion 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> > --- > You received this message because you are subscribed

BBEdit 12 major "thrust"/purpose and other grand ideas or concepts

2017-09-07 Thread bobembry
Hi friends What are the major ideas that BBEdit 12 development is working toward? Thanks Bob -- 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 gro

Re: [] or | ?

2017-05-17 Thread Jean-Christophe Helary
|b)' but not to 'a|b'. > > Consider that the function to which the pattern is given might then be > searching for, something like '^(?:(.*?)[ab])*(.*)$' or '^(?:(.*?)a|b)*(.*)$' > to populate \1 \2 … with the various substrings of the long string with

Re: [] or | ?

2017-05-17 Thread solak
Oh, it is definitely the case that if the pattern in question is then concatenated into a more complex pattern, then '[ab]' is equivalent to '(a|b)' but not to 'a|b'. Consider that the function to which the pattern is given might then be searching for, something

Re: [] or | ?

2017-05-09 Thread Jean-Christophe Helary
d on wether you use [ab] or a|b as an argument for the "trim" regex. There seems to be a bug somewhere since the arguments give the same result for [ab] and (a|b), and since I learned everything I know about regex with BBLite, I thought about asking here :) Jean-Christophe > On Ma

Re: [] or | ?

2017-05-09 Thread Tom Robinson
This is what I found when I was wondering that: http://stackoverflow.com/questions/4724588/using-alternation-or-character-class-for-single-character-matching Also: http://stackoverflow.com/questions/22132450/why-is-a-character-class-faster-than-alternation Basically character classes are

Re: [] or | ?

2017-05-09 Thread Patrick Woolsey
On 5/9/17 at 10:10 PM, jean.christophe.hel...@gmail.com (Jean-Christophe Helary) wrote: I'm wondering if [] and | are equivalent for single characters or if there are marginal cases where they would not be equivalent ? Though the expressions [ab] and a|b { or ([ab]) and (a|b)

Re: [] or | ?

2017-05-09 Thread Fletcher Sandbeck
uivalent for *single > characters*". (emphasis added). > > So the question is, for any arbitrary a and b, are [ab] and a|b logically > equivalent, or are there cases for some a and b where it is not the case? > > Jean-Christophe > >> >> On Monday, May 8, 2017 a

Re: [] or | ?

2017-05-09 Thread Jean-Christophe Helary
equivalent for *single characters*". (emphasis added). So the question is, for any arbitrary a and b, are [ab] and a|b logically equivalent, or are there cases for some a and b where it is not the case? Jean-Christophe > > On Monday, May 8, 2017 at 10:10:45 PM UTC-4, Jean-Christophe

Re: [] or | ?

2017-05-09 Thread Dave
character class. When we observe, for example, that the expression a|b does the same thing as [ab], this is simply because it is no easier to define certain small, simple classes than to enumerate their members, but what about [a-z], or [^a]? Not only would you be up all night listing all the

[] or | ?

2017-05-08 Thread Jean-Christophe Helary
I'm wondering if [] and | are equivalent for single characters or if there are marginal cases where they would not be equivalent ? Jean-Christophe -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email

ESLint in BBEdit or example use of bbresults

2016-12-03 Thread Oliver Boermans
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> --- You received this message because you are subscribed to the Google Groups "B

Re: How to add a ssh-Link or PDF to a BBEdit-project

2016-10-03 Thread Raul Dominguez
user@host in the url-field and put per > Drag&Drop this to the project list. With http:// this works perfect, > with ssh://xxx this link is also inserted to the project, but nothing > happens if I click on it. > b) Open Safari, enter ssh://user@host in the url-field and put per

Can I sort the file list by date (or another attribute) in disk browser view?

2016-09-14 Thread Dan Koeppel
Can I sort the file list by date (or another attribute) in disk browser view? thanks! -- 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

Re: Wrapping text in symbols or tags

2016-08-06 Thread Adrian Manea
10:01, Adrian Manea > wrote: > > One of the main things I miss from Sublime Text is the ability to wrap > selected text in symbols/markers or tags. > > -- > > Hey Adrian, > > BBEdit is scriptable, which means you can add features t

Re: Wrapping text in symbols or tags

2016-08-06 Thread Christopher Stone
On Aug 06, 2016, at 10:01, Adrian Manea wrote: > One of the main things I miss from Sublime Text is the ability to wrap > selected text in symbols/markers or tags. Hey Adrian, BBEdit is scriptable, which means you can add features to suit yourself. This very basic AppleScript will wr

Re: Wrapping text in symbols or tags

2016-08-06 Thread Adrian Manea
LE: I've seen this post: http://www.macdrifter.com/2012/01/moving-text-editors-taking-bbedit-seriously.html, wherefrom I've drawn some inspiration. But really, using Keyboard Maestro or similar software is not that comfortable. Are there any "native" alternatives? O

Wrapping text in symbols or tags

2016-08-06 Thread Adrian Manea
One of the main things I miss from Sublime Text is the ability to wrap selected text in symbols/markers or tags. I used this largely for Markdown and LaTeX, the main "languages" I write in. So it goes like this: you have some text which you want to italicize, say, select it and press

How to add a ssh-Link or PDF to a BBEdit-project

2016-07-31 Thread roedert
d to the project, but nothing happens if I click on it. b) Open Safari, enter ssh://user@host in the url-field and put per Drag&Drop this to the desktop or everywhere else. Then put this created weblog-file to the project. If I click on it, the xml-conmen of this file is displayed in the edit

Re: Find all doesn't highlight (or run)

2015-09-21 Thread David Roland-Holst
Wahoo!! On Tuesday, September 8, 2015 at 9:48:18 AM UTC-7, David Roland-Holst wrote: > > Sorry if this is trivial, but I am editing flat code text files and can't > get Find All (%G) to highlight or run on the search menu (see attached), > even though I have checked

Re: Find all doesn't highlight (or run)

2015-09-08 Thread Christopher Stone
On Sep 08, 2015, at 10:58, David Roland-Holst wrote: > Sorry if this is trivial, but I am editing flat code text files and can't get > Find All (%G) to highlight or run on the search menu… __ Hey David, Find

Re: No math OR SVG in HTML5

2015-06-17 Thread Stephan Wittwer
Thanks. > To answer my own question: and then later "off" might help me > > > > >> Not only that, it is impossible to format this content using BBEdit >> utilities. I hope this will soon be fixed. >> >> JD >> >> -- This is th

Re: No math OR SVG in HTML5

2015-06-10 Thread Stephan Wittwer
be fixed. > > JD > > -- 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: BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-27 Thread Bruce Linde
6, 2015 at 7:30:56 PM UTC-7, Christopher Stone wrote: > > On Apr 26, 2015, at 17:30, Bruce Linde > > wrote: > > Ok, just so no one confuses me with an expert bbedit user (or one who > actually rtfm)... i recently got bit by a similar problem when bbedit > stopped autocomp

Re: BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-26 Thread Christopher Stone
On Apr 26, 2015, at 17:30, Bruce Linde wrote: > Ok, just so no one confuses me with an expert bbedit user (or one who > actually rtfm)... i recently got bit by a similar problem when bbedit stopped > autocompleting variable names in a rather large .php script. > > I was le

Re: BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-26 Thread Bruce Linde
ok, just so no one confuses me with an expert bbedit user (or one who actually rtfm)... i recently got bit by a similar problem when bbedit stopped autocompleting variable names in a rather large .php script. i was led gently to the solution by patrick woolsey, who deserves full credit for

Re: BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-26 Thread Bruce Linde
g me about 10 times longer than it could/should to > complete my task. > > Is there a solution to this problem? > > Thank you in advance for your help! > > Michelle > -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a probl

Re: BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-26 Thread Bruce Van Allen
System Preferences -> Keyboard -> Text preferences, where I see the same pop-up, among other things. I'm running OS X 10.10.3. What setting(s) do you have in those pop-ups? Might be worth poking around there. I see that the Learn-ed words are put into my ~/Library/Spelling folder in a

BBEdit 11.0.3 does not 'Ignore' or 'Learn' misspelled words

2015-04-26 Thread Michelle
y time I click "Find Next." Therefore, it is taking me about 10 times longer than it could/should to complete my task. Is there a solution to this problem? Thank you in advance for your help! Michelle -- This is the BBEdit Talk public discussion group. If you have a feature req

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

2014-12-14 Thread Christopher Stone
On Dec 14, 2014, at 09:26, Tom Robinson wrote: > You've enthused me to look at libraries again. Interested to know why you're > saving the location though — from my reading anything in ~/Library/Script > Libraries is in the AppleScript search path and you just need to write 'use > script My Li

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

2014-12-14 Thread Tom Robinson
EST_LIBRARY_HANDLER() -- 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> --- You

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

2014-12-11 Thread Vlad Ghitulescu
ertical whitespace. > \A == TOP of the text. > .+ == Any character 1 or more. > Expand all \| Collapse all == Literal Text (pipe is a reserved > character and must be escaped). > [[:blank:]]* ==

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

2014-12-11 Thread Christopher Stone
wn to memorizing vocabularly and some of the grammar (or syntax). What is an atomic character? What is an anchor point? What is a range? Basic usage is simple: [0-9]+ == A Range of Digits - one or more. [4-9]+ == A different Range of Digits - one or more. Learning to put words together to fo

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

2014-12-09 Thread Vlad Ghitulescu
getSafariText now WHICH text to get from the page? Or is this magic put in the first *replace* > replace "(?s)\\A.+Expand all \\| Collapse > all[[:blank:]]*\\r+(.+(?=\\r{1,}Watch this entire course)).+" using "\\1" > options {search mode:grep, case sensitiv

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

2014-12-09 Thread Christopher Stone
ent“ / efficient way to do this with text factories > (or perhaps AppleScript or RegEx?!) therefore my question: how would you > solve something like this in BBEdit? __ Hey Vlad, Manually

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

2014-12-08 Thread Rick Gordon
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" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> --- You received this me

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

2014-12-08 Thread Vlad Ghitulescu
> FIND (grep): > ^means: beginning of paragraph > \s* means: any number (or none) of whitespace characters > (.+) means: The 1st string to capture is any number of any character (up > until what's next) > *\r means optionally any number of spaces (or none), followed

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

2014-12-08 Thread Rick Gordon
FIND (grep): ^means: beginning of paragraph \s* means: any number (or none) of whitespace characters (.+) means: The 1st string to capture is any number of any character (up until what's next) *\r means optionally any number of spaces (or none), followed by a return \s* means: any n

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

2014-12-08 Thread Vlad Ghitulescu
_ > 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" rather than posting to the group. > Follow @bbedit on Tw

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

2014-12-08 Thread Rick Gordon
BEdit 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> --- You received this message because you are subscribed

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

2014-12-08 Thread Vlad Ghitulescu
imagine there’s a more „intelligent“ / efficient way to do this with text factories (or perhaps AppleScript or RegEx?!) therefore my question: how would you solve something like this in BBEdit? Thanks! Regards, Vlad -- This is the BBEdit Talk public discussion group. If you have a feat

Re: How to run multi file searches as a script or macro

2014-10-30 Thread Christopher Stone
ic. :) If I read the manual correctly it's because they're specifically designed to process the selected text OR the full text of the front BBEdit text document OR the contents of files on-disk. Essentially a Text-Factory is a Text-Filter with a limited scope of operations. I looked

Re: Hoe to run multi file searches as a script or macro

2014-10-29 Thread mmb21003200
Chris, The bbfind command was very useful and works well for me in a worksheet, many thanks. Mark -- 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 gro

Re: Hoe to run multi file searches as a script or macro

2014-10-28 Thread Christopher Stone
t directory is created if not extant. I've used `cp` in this one to be non-destructive, but that's easy to change to `mv` or `rm`. I've also set `cp` to verbose output, so I know exactly what was done. -- Best Regards, Chris -- This is the BBEdit Talk public discussion group. If

Re: Hoe to run multi file searches as a script or macro

2014-10-27 Thread Christopher Stone
ing. Just press enter. __ This is a new convention in BBEdit 11. 'Cmd-Return' or 'Enter' used to be the default invocation hotkeys. 'New Line After Paragraph' has taken over Cmd-Return, and 'New Line Before Paragraph' has taken over Cmd-Shift-Return.

Re: Hoe to run multi file searches as a script or macro

2014-10-27 Thread Dave
as would rather do it in one pattern, but it does return what I > want. > > So Ideally I want to find all lines with '@due' OR '@next-week' OR '@next > month' but NOT @done > > Cant understand why a multi file search using text factory in BBE won

Re: Hoe to run multi file searches as a script or macro

2014-10-27 Thread mmb21003200
Not great as would rather do it in one pattern, but it does return what I want. So Ideally I want to find all lines with '@due' OR '@next-week' OR '@next month' but NOT @done Cant understand why a multi file search using text factory in BBE won't allow

Re: Hoe to run multi file searches as a script or macro

2014-10-27 Thread Dave
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> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk"

Re: Hoe to run multi file searches as a script or macro

2014-10-27 Thread Dave
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> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group

Re: Hoe to run multi file searches as a script or macro

2014-10-26 Thread Stan Ulrich
son metacpan.org/author/CNG > > O< ascii ribbon campaign - stop html mail - www.asciiribbon.org > http://www.ietf.org/rfc/rfc1855.txt > > -- > This is the BBEdit Talk public discussion group. If you have a > feature request or would like to report a problem, please ema

Re: Hoe to run multi file searches as a script or macro

2014-10-25 Thread Charlie Garrison
Charlie -- Charlie Garrison github.com/cngarrison metacpan.org/author/CNG O< ascii ribbon campaign - stop html mail - www.asciiribbon.org http://www.ietf.org/rfc/rfc1855.txt -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to

Re: Hoe to run multi file searches as a script or macro

2014-10-25 Thread Stan Ulrich
g > http://www.ietf.org/rfc/rfc1855.txt > > -- > 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

Re: Hoe to run multi file searches as a script or macro

2014-10-25 Thread Charlie Garrison
k on getting a direc**tory list and then executing the script on each file, can't remember how to process more than one file at a time or use wildcards.* Which results? The OP said: 2. Put the output found (results) into one document so they are all together (prefixed by document path where

  1   2   3   >