Re: Multiple Cursors

2018-05-01 Thread Dave
It reminds me of the Firesign Theater's second album. On Monday, April 30, 2018 at 4:38:42 AM UTC-4, Christopher Stone wrote: > > I *do* think it foreshadows things to come though. > -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a prob

Feature request

2018-08-03 Thread Dave
No, not a BBEdit feature request. I want to see a BBEdit feature in other places: hierarchical window menus! I get spoiled by how easy it is to find an open document in BBEdit that it makes using othe programs unbearable, especially Safari and the Finder. It's been a while since Apple added tab

Re: Error 12182 with grep search on large file

2018-09-01 Thread Dave
What's wrong with plain ol' grep? grep [-P] 'your pattern here' humungous.log > results.txt I can't recall grepping any 3GB files, but I've probably done at least that much in smaller files. On Wednesday, August 29, 2018 at 11:39:51 PM UTC-4, Christopher Stone wrote: > > In lieu of other soluti

Re: Error 12182 with grep search on large file

2018-09-03 Thread Dave
Gnu grep is wicked fast. I don't know what you're using, but I routinely download and buid grep with PCRE support. (I also build PCRE. They're both very easy to build & install. I don't use MacPorts or Homebrew because I like to choose my own options.) Incidentally, you can make grep slow if yo

How to Create Finder Folders from BBEdit Text List

2019-01-15 Thread Dave
mkdir accepts multiple arguments, so assuming you have a list of names called “foldernames.txt,” you can just enter: mkdir `cat foldernames.txt` instead of using a loop. -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email "s

Re: How to Create Finder Folders from BBEdit Text List

2019-01-15 Thread Dave
If you have a space in a folder name, you’ll get two folders unless you quote it. Not what I’d call “blowing up.” I only tried it with 330 names. I’m sure there’s a limit, but I don’t know what it is. If you need more folders, make more lists. Or use a loop if it makes you happy. -- This is

Re: How to Create Finder Folders from BBEdit Text List

2019-01-16 Thread Dave
t variable, e.g. IFS=' ' Then run the mkdir `cat foldernames.txt` command. You can either reset $IFS to its default value () or close your session as further operations that depend on $IFS may yield unexpected results. On Tuesday, January 15, 2019 at 11:10:49 PM UTC-5, Dave wrote: > &

Re: How to Create Finder Folders from BBEdit Text List

2019-01-16 Thread Dave
Thanks, Chris. I've always used that literal newline inside sigle quotes in scripts and the command-line, but people think there's something wrong when they see that continuation prompt. On Wednesday, January 16, 2019 at 2:33:22 PM UTC-5, Christopher Stone wrote: > > Hey Dav

Re: grep search - insert character before search result

2019-04-29 Thread Dave
Or find: (?=\d{4}) replace: \t This finds the position before four consecutive digits and inserts a tab. -- 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 to the group. Follow @bbe

Re: grep search - insert character before search result

2019-05-01 Thread Dave
Bruce, Guilty. I'm a bit of a regex geek, but I also tend to use advanced expressions (like positional assertions), even when simpler ones would do the job, just to stay in practice. You'll find these things become second nature if you use them all the time, even if they look like gibberish at

Re: RegEx in JS question

2021-02-24 Thread Dave
Lookahead, yes. Lookbehind, no. On Wednesday, February 24, 2021 at 3:22:06 AM UTC-5 tedmas...@gmail.com wrote: > All excellent pointers. Thank you all. I have to assume I can use > lookahead and lookbehind assertions in JavaScript, either natively or via a > node library, but wasn't sure how t

Re: How to automatically add something at beginning and end of each line?

2009-12-07 Thread Dave
On Dec 6, 9:33 am, Dennis Whiteman wrote: > Alternatively, this grep search and replace would work... > > Search: > (.*)\r > > Replace: > \1\r > > If you only perform it on the selected text, it'll give a bit of > control over how greedy it is. If your paragraphs are separated by two > returns,

Re: fragility of folds

2009-12-11 Thread Dave
If you mean a way to prevent them from unfolding, for example, when you move them around, I'd also like to know the answer to this. I'm trying to merge JavaScript code from a bunch of HTML pages into individual JavaScript files and organize them. (I sometimes need to do similar things with XML fil

Re: Question about balancing brackets

2009-12-11 Thread Dave
Is there any HTML markup--or anything that looks like HTML markup--in this function? I often find that functions with fragments of HTML in them confuse BBEdit, even if the tags are enclosed in quotes, and expressions like "if(y so BBEdit won't try to parse it. On Dec 8, 8:42 am, Doug Lerner wro

Re: A 'reload file' facility would be handy..

2009-12-14 Thread Dave
"Reload from Disk" does just what is says: it reloads the locally cached copy from the local disk. I think George is probably, like myself, more interested in a "Reload from Server" option. Currently the only way to do this is to close the file and reopen it. On Dec 13, 10:36 am, Charlie Garrison

Re: can Get Info be made to ignore HTML code?

2009-12-17 Thread Dave
Try Markup > Utilities > Remove Comments and Markup > Utilities > Remove Markup, count the words, then undo. If there are script and style elements, you'll need to remove them, because they will add to the word count too. On Dec 16, 2:44 pm, RobS wrote: > Hi, > > I'm trying to answer the questio

Re: Question about Include functionality...

2009-12-28 Thread Dave
If I were doing this in jsp, I'd get the path to the file that's including it (${pageContext.request.requestURI}), and use ifs to print different lines in different files. But I'd only do that if I had to include the whole file for some reason. I'd much rather put each line in a different file. In

Still puzzled by Find Differences: Compare Folders

2010-10-09 Thread Dave
Maybe I'm missing something, but I have never understood the usefulness of the "Only in new" and "Only in old" lists. When I first started using this feature I assumed there would be some way to copy these files into the same relative path in the folder where they didn't exist, but if there is I st

Privileges Error When Using Any Unix Filter

2011-02-10 Thread Dave
I've been using my Unix Filters pretty frequently until yesterday when I started getting an error dialog: "You do not have sufficient privileges to perform this operation (MacOS Error code: -5000)" After this, all of BBEdit's menu items are greyed out except for those with submenus (which are t

Re: TextMate to BBEdit switchers guide?

2011-05-06 Thread Dave
On May 5, 3:23 pm, Gabriel Roth wrote: > I'm not familiar with TextMate bundles, but it seems to me that BBEdit's > Unix Scripts and Unix Filters menus might be an easier target than > AppleScript for converting existing bundles—since for one thing they can be > written in any language available f

Re: TextMate to BBEdit switchers guide?

2011-05-06 Thread Dave
On May 6, 10:53 am, Steve Kalkwarf wrote: > Looking through my own scripts, there's nothing that strikes me as useful to > anyone else, That's your perception of your scripts, but, even if accurate, it says nothing about scripts in general. > I've always considered scripts, grep patterns, and t

Re: Returning Unix filter output in new window

2011-05-07 Thread Dave
If the contents of the window exist as a file you can read from the file, write your output to another file, and then open that file with the bbedit command-line tool, and voila! On May 6, 12:42 am, Hertze wrote: > But then I would need a way to pass the contents of my window (the > text that wil

Re: BBEdit 10.0.2 (3077) pre-release

2011-08-23 Thread Dave
If you're not doing anything with that horizontal scrollbar, could you please add it to the file list? That would be awesome. :) On Aug 22, 6:06 pm, Rich Siegel wrote: > *   [216287] Differences lists no longer have a horizontal scrollbar. -- You received this message because you are subscribed

Re: BBEdit 10.1

2011-10-08 Thread Dave
Thank you, Thank you, Thank you for the Open File by Name improvements! On Oct 5, 11:12 am, Rich Siegel wrote: > Good { morning, afternoon, evening }, > > We are pleased to announce the release and immediate > availability of BBEdit 10.1. This is a free update for anyone > using BBEdit 10.0 or 10

Re: Major problem due to recent ftp docs

2011-12-09 Thread Dave
Preferences Application Reopen documents that were open at last quit Include documents on servers (uncheck) On Dec 8, 7:21 pm, aries wrote: > Hello, > > Over time I have opened several files directly over FTP. As a result, > every time I startup BBE

Re: bbedit grey space

2012-03-23 Thread Dave
That's the page guide. Open Preferences > Appearance. Halfway down you'll see "Editing Window." There's a setting for "Page guide at [ ] characters" and a check box to turn it on or off. You can also adjust the width in characters or change the contrast so you can barely see it. On Mar 22, 9:00 

Re: SVN options no longer show up in BBEdit version 10

2012-08-08 Thread Dave
Nick, SmartSVN 7 uses SVNKit 1.7.5 for Java. It is a Subversion client written in Java. It is not a git client. The reason the local working copy metadata is different is due to the difference between how svn 1.6 and 1.7 operate. svn 1.6 keeps its metadata in flat files in the invisible .svn di

Re: CoffeeScript syntax highlighting

2012-09-15 Thread Dave
I have a few Text Filters that use node, so I don't think finding node is the problem, assuming your #! path is correct. None of them will do anything from the #! menu, however, because they rely on stdin and stdout to receive input from BBEdit and return the result, and they're written in Java

Re: Success and Error are spamming my function navigator

2012-11-20 Thread Dave
How many unique success and error handlers are you using? If you're doing the same things, you don't need to keep recreating the same functions every time you make an ajax request. Just declare them and re-use them. function successHandler(data, textStatus, xhr) { if (status !== 200) { this.er

Re: Strip away all HTML, leaving just the URLs

2013-03-03 Thread Dave
This might be better done on the command line. $ grep -Po '(?<=href=")[^"]+' [file name] This will give you the content of every href attribute in the file, and nothing else. Just a list of URLs. If there are any URLs you want to exclude, such as mailto:, javascript: or anchors (e.g. href="#na

Re: Multifile search settings based on projects

2013-12-10 Thread Dave
There are probably a lot of things that would make sense being configured at the project level, like indent with tabs or spaces, default language, vcs, search patterns, scripts, clippings, even default window size. I'd love to see at least some of this, but then some people would complain about

Re: Disadvantages of object-oriented JS in BBEdit?

2014-04-01 Thread Dave
What you've done is to make your functions anonymous. You don't need to do that to make them object methods. All you need to do is make them properties of an object. Instead of > Replacefunction adjustMainLayout() { blah blah blah... > with layout.adjust = function() { blah bla

Line Numbers and Text Folding

2014-07-24 Thread Dave
It used to be that line numbers were hidden for folded lines, but at some point this changed. Now line numbers run sequentially, and folded lines aren't counted. I found the previous behavior useful, because I could tell at a glance how many lines were hidden by the fold, but I also think the n

Re: Line Numbers and Text Folding

2014-07-24 Thread Dave
I was kind of hoping you'd say something like that, but can you elaborate? I'm running version 10.5.11 (3390) and I'm seeing the same behavior on two different machines, and it only started happening fairly recently. I can't say exactly when, but I think I first noticed it in a pre-release versi

Re: Modifying Double-Click Behavior

2014-08-09 Thread Dave
It's not just double click behavior. If you search for word characters (\w), underscores will be included. And it's not just BBEdit. Any program that uses regular expressions defines word-characters as [a-zA-Z0-9_], and wc counts words containing underscores as single words. Although there are

Re: Line Numbers and Text Folding

2014-09-09 Thread Dave
I've seen keys that were either true or missing before, but never one where absence is equivalent to true. On Thursday, July 24, 2014 1:40:57 PM UTC-4, Dave wrote: > > It used to be that line numbers were hidden for folded lines, but at some > point this changed. Now line numbers

Re: A great little feature I would like very much in BBEdit...

2014-10-07 Thread Dave
I'm mildly curious as to how this would work, since lines in display have nothing to do with lines in the source code. Even if you're careful to put returns between block elements you can never be sure what is or isn't a block element without considering stylesheets. On Monday, October 6, 2014

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

2014-10-24 Thread Dave
But Mac OS X no longer includes gnu grep, more's the pity. They replaced it with the BSD version. There are a number of differences, the most significant one being the lack of a -P option. Apple's grep manpage is available online here: https://developer.apple.com/library/mac/documentation/Darw

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

2014-10-27 Thread Dave
I think they made that change in mountain lion, but it could have been lion. When you get your new machine you might want to download the latest gnu grep. Drop me a line if you need help building it with PCRE support. -- This is the BBEdit Talk public discussion group. If you have a feature r

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

2014-10-27 Thread Dave
The -f option didn't change. I think it's a posix standard. The path to the pattern file has to immediately follow the -f, and the patterns have to be LF-delimited. I've used it in both BSD grep and gnu grep. -- This is the BBEdit Talk public discussion group. If you have a feature request or

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

2014-10-27 Thread Dave
grep -RP "@(due|next(-week| month)).+(?!@done)" path > search_results.txt Should find all of them, but only if you have gnu grep with PCRE support. On Monday, October 27, 2014 4:53:57 AM UTC-4, mmb21...@gmail.com wrote: > > > Using grep works but only one search at a time because of my limited >

Re: Tidy Retired

2014-10-28 Thread Dave
White-space between elements is a text node, and text nodes are rendered down to a single space by HTML rendering engines. That space will have a width and height corresponding to the font styling of the containing element, and if the containing element is the body or a descendent of the body,

Re: Tidy Retired

2014-10-28 Thread Dave
In HTML, when you're between elements, you're also inside the element that contains them. On Monday, October 27, 2014 7:07:37 PM UTC-4, Gustave Stresen-Reuter wrote: > > On Oct 27, 2014, at 10:37 PM, Rick Gordon > wrote: > > > Image_1 style="display:inline-block">Image_2 > > > > ... would not

Re: You Will Love This: Balthisar Tidy

2014-11-09 Thread Dave
I don't love their home page. I may not be the speediest reader on the planet, and it is Sunday morning, but I couldn't finish reading a single panel of that carousel before they whisked it away. I have to wonder how people who use carousels for content decide where to set the timing. Or if the

Save As Stationery?

2015-10-03 Thread Dave
Does anybody see a "Save As Stationery" checkbox in the save dialog when you choose "Save As..." from the File menu? I don't. I'm using version 11.1.3 (3764), but I'm not at all sure what I was using the last time I saved a stationery pad. The latest version of the User Manual says, "To create

Re: Save As Stationery?

2015-10-04 Thread Dave
te: > > > Hey Dave, > > That bit in the manual would appear to be obsolete. > > Put your stationary in: > > ~/Library/Application Support/BBEdit/Stationery/ > > DON'T turn on the stationary-bit in the Finder – BBEdit knows items in its > stationary fold

Re: Quality of life

2015-12-04 Thread Dave
I hadn't even noticed they'd pulled out of the app store. How 'bout that. I've only been using BBEdit for about 12 years, and I've only had to contact them for support maybe a half dozen times, and half of those were probably feature requests, but knowing that they're there, and that they will

Re: Quality of life

2015-12-04 Thread Dave
Correction: I've been using BBEdit for 22 years. How the time flies. -- 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:

Re: ctags with a new language

2016-03-22 Thread Dave
If you moved your include files to /usr/local/include, you need to tell gcc where to find them, e.g. $ export CPPFLAGS=-I/usr/local/include On Monday, March 21, 2016 at 7:04:32 PM UTC-4, David Roland-Holst wrote: > > All, > > I want to implement justly celebrated ctags with a new language and w

Re: Autodetect indentation mode

2016-10-13 Thread Dave
I work on different projects with their own conventions, so I face similar challeneges. One thing that has helped has been convincing people to use EditorConfig, which BBEdit and most IDEs and editors support. It allows you to configure indentation formats for different languages, so they can us

Re: Best tool to open & search large log files (5GB+)

2016-11-19 Thread Dave
At work I mostly use Splunk, but then, I don't have to pay for it. At home, and sometimes at work if I have the raw logs available, I use grep to chop up the files into manageable chunks based on what I'm looking for. I don't mean the weak, out-of-date BSD grep Apple ships with Xcode. I get the

Re: Red "Evaluation Ended" text

2016-12-16 Thread Dave
Just wanted to share an example of how far ahead of the curve BBEdit is in usability. Ever since Safari and Finder got tabbed windows, I have hoped in vain that the next upgrade will bring a hierarchical Window menu. BBEdit has had this feature for as long as I can remember (which isn't saying a

Re: Use BBEdit to update several hundred rows in a 3 column table?

2016-12-20 Thread Dave
Peter: Based on your "longer sample," I've written the following *Find:* (?<=class=xl\d{2} style='height:\d{2}\.0pt'>)([^<]+)((]+>[^<]+)?\s+[^<]+(]+>[^<]+)?\s+)[^<]+(?=) *Replace:* \1\2$ This accounts for everything except the instance that includes this element:   I could update the search patte

Re: Help With Grep Pattern

2017-03-05 Thread Dave
If you install the PCRE libraries you get tons of documentation in HTML and manpage format. It also includes some useful demos and utilities. Of course you can also link to them when you build gnu grep, sed and other programs with PCRE dependencies. http://www.pcre.org -- This is the BBEdit Ta

Re: Shell Scripting Folding

2017-04-21 Thread Dave
All of them or just the bash and perl scripts? Are there indications that BBEdit recognizes the language? Is syntax-coloring working? Is the name of the language displayed in the status bar? BBEdit generally gets the language from the shebang if the file has no extension or the extension is lan

Re: Can't set invisible character colour

2017-04-22 Thread Dave
The color of tabs and spaces is set with the "Spaces" setting in Text Colors. "Other invisibles" refers to other non-printing characters such as carriage returns in a document with newline end of line characters, or code points that don't belong in in the current character set. They usually app

Re: [] or | ?

2017-05-09 Thread Dave
Dear Jean-Christophe, While it may be possible to use them to create patterns that are functionally equivalent, it is these cases that are marginal, and the operators themselves should by no means be considered as equivalent. One defines two alternative patterns, while the other defines a charac

Re: XML Pretty Print

2017-06-16 Thread Dave
You should have a program called xmllint in your /usr/bin/ directory that can parse and reformat an xml file, stream or URL. Since it can process standard input and output to standard out, it can be used in a text filter. See the user manual and http://bbeditextras.org/wiki/index.php?title=Text

Re: How Choose Non-Comment Lines Into New File

2017-08-28 Thread Dave
I'd use something like this (in Terminal): grep -Ev '^[ \t]*(#|$)' /etc/apache2/httpd.conf > newfile.conf It means, "grep, using an *E*xtended regular expression, returning only non-matching lines (in*v*ert), lines with a '#' or the end of the line preceded by zero or more spaces or tabs." This

Re: Auto-select search selected when text is selected

2017-09-03 Thread Dave
It has always puzzled me that "Text" actions like "Apply Text Filter," "Sort Lines...," "Process Lines Containing...," etc. default to the current selection, if there is one, or the entire document otherwise, but Find/Replace doesn't. While this might be too drastic a change to foist upon those

Re: BBEdit for Writers

2017-10-18 Thread Dave
Unfortunately, it is becoming a de-facto standard. For example, github README files will only be displayed on a project page if they are in markdown. It has a totally non-semantic syntax, which makes nearly impossible for many, like me, to learn it; since the characters it uses are often part o

Re: Deleting a named div

2017-10-30 Thread Dave
divs = document.querySelectorAll(); lastDiv = divs.item(divs.length -1); I have worked out how to count the similar div classes on the page, go back > to the top and count down and then do a search and replace, but > this seems clumsy. > -- This is the BBEdit Talk public discussion group. If

Re: Deleting a named div

2017-10-30 Thread Dave
divs = document.querySelectorAll(".day_report"); lastDiv = divs.item(divs.length -1); On Sunday, October 29, 2017 at 8:34:26 AM UTC-4, jgill wrote: > > I have worked out how to count the similar div classes on the page, go > back to the top and count down and then do a search and replace, > bu

Re: Help with a grep question

2018-01-28 Thread Dave
Enter one of these patterns in a Find dialog: (?<=ID_User=)\.[[:xdigit:]]+(?=&-find) or (?<=ID_User=)\.[[:alnum:]]+(?=&-find) (Which pattern depends on whether the ID is a hexadecimal number or simply a sequence of alphanumeric characters.) Click Extract. A new document containing the IDs will be

Re: Regular expression with negative look-behind assertion

2018-04-16 Thread Dave
How about ^#define or, if some might be indented, ^\h*#define Positional assertions are great, but why use them if you don't have to, especially look-behinds, which can't have variable string lengths? On Sunday, April 15, 2018 at 6:35:59 PM UTC-4, Alfredo wrote: > > I’m trying to find all “enab

Re: [Markdown[HTML[Markdown]]]

2018-04-26 Thread Dave
Markdown is such a time-saver. I've run into similar problems with tables. There's no way, even with github extensions, to control things like column spans or row spans. It's just too limiting to be of any use to me, and I've spent more time trying to figure out how to work around the limitatio

How to adjust page guide?

2018-08-17 Thread Dave Cloud
Not seeing it settings or web search. -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "supp...@barebones.com" rather than posting to the group. Follow @bbedit on Twitter: --- You re

Mac Numeric Enter key does nothing

2018-08-23 Thread Dave Cloud
The numbers work but not the Enter key, on a Mac long keyboard. If I hit Option+Clear, it disabled the numbers as well in every app. I just want the numeric Enter key to work like the normal Enter key. I'm seeing no option in Preferences for this. I'm using BBEdit * version 12.1.5 (410102, 64

Appending to a line

2022-05-08 Thread Dave Simpson
I've looked at Creating Subpatterns in then manual but I'm sorry but a lot of the syntax is going over my head :-( I'm not a power user and generally just need to do straightforward search/replace. I want to search a text file. Every time a line begins 2 PLAC I want to append the word England t

Re: Appending to a line

2022-05-08 Thread Dave Simpson
tring like this: > > ^(2 PLAC)(.*)$ > > And you want to replace with this: > > \1\2 England > > That’s it. Try it. > > On May 8, 2022, at 8:53 AM, Dave Simpson wrote: > > I've looked at Creating Subpatterns in then manual but I'm sorry but a lot > of t

Re: Appending to a line

2022-05-11 Thread Dave Simpson
Thanks Bucky That helps me a lot. Dave On Monday, May 9, 2022 at 4:14:01 AM UTC+1 buckyjunior wrote: > I was fortunate to learn some bits of regex/grep from helpful people on > this list who not only showed an answer to a question but explained what > was happening. While this searc

Replacing all spaces in a line, but not the first

2023-06-06 Thread Dave Simpson
Hi, I'm a novice at this sort of thing. I have a line of text:- *2 PLAC 11 Haymarket Willenhall Staffordshire* I want to replace the spaces with , [comma space] after the first part of the line [2 PLAC ] ^(2 PLAC ) finds me the start Now I want to replace the spaces with comma space:- *2 PLA

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

2023-06-06 Thread Dave Simpson
ong, Street, Chester, Cheshire 2 PLAC Meadows, Lowestoft, England 2 PLAC Meadows Lowestoft England Thanks On Tuesday, June 6, 2023 at 2:48:07 PM UTC+1 Kaveh Bazargan wrote: > Hi Dave > > Could you give several examples of before, then the same ones after? > > Regards > Kaveh

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

2023-06-06 Thread Dave Simpson
Hi Kaveh Sorry about the delay in replying, had to go out. I’m a bit confused as to how the 2 PLAC can be put back to correct line Not every line in the file begins with 2 PLAC Dave On Tuesday, June 6, 2023 at 4:29:21 PM UTC+1 Kaveh Bazargan wrote: > BTW to replace > > 2 PLAC > &

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

2023-06-07 Thread Dave Simpson
e label. Many thanks for your help. Think I'll put it on the back burner for now. Regards Dave On Wednesday, June 7, 2023 at 8:52:23 AM UTC+1 Kaveh Bazargan wrote: > Ah, I thought all lines had that. > > Then you could replace "2 PLAC " (with space) with a unique strin

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

2023-06-07 Thread Dave Simpson
e* However, it is a simple matter to remove the extra commas. I can fix the things like Street, Road etc afterwards, it was the initial adding of the commas that was giving me a problem. Very many thanks for your efforts Dave On Wednesday, June 7, 2023 at 9:24:02 PM UTC+1 Rick Gordon wrote:

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

2023-06-07 Thread Dave Simpson
uot; back to "2 PLAC " The only bugbear with that is that it puts a comma after the house number, whereas Rick's method doesn't,but I can fix that. Many thanks On Wednesday, June 7, 2023 at 10:34:25 PM UTC+1 Dave Simpson wrote: > Hi Rick > > Many thanks for that, it w

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

2023-06-08 Thread Dave Simpson
Hi Rick Many thanks for the explanation, I can see what you mean now. Regards Dave On Thursday, June 8, 2023 at 5:53:09 AM UTC+1 Rick Gordon wrote: > It can be adapted for 2-10 words; it's just along expression. > > As you can see, what I provided… > > === > FIND: >

Re: What HTML level am I at?

2008-09-27 Thread dave . fitch
cular problem here, but I thought someone might find it useful. Dave --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To post to this group, send email to bbedit@googlegroups.com To unsubs

RE: Automatically Reload Documents

2008-12-31 Thread Dave Fitch
What would be nice would be if there was some way to get BBEdit to reload open documents from an FTP server...[Or can BBEdit do this and I have missed it?] Dave --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "B

RE: Automatically Reload Documents

2009-01-02 Thread Dave Fitch
On 1 Jan 2009, at 08:46, Bruce Van Allen wrote: > On 12/31/08 at 10:17 AM, dave.fi...@gmail.com (Dave Fitch) wrote: >> What would be nice would be if there was some way to get BBEdit to >> reload >> open documents from an FTP server...[Or can BBEdit do this and I >>

Re: FTP auto-connect

2009-11-07 Thread Dave Ely
On Nov 7, 2009, at 2:09 AM, jjardoino wrote: > Hi everybody, > > I just joined this group today, so what I'll say has already been said > before... > > I keep on using BBEdit 9.0.2 because it's the last version, AFAIK, > which has FTP auto-connect option. With this option, it's easier for > me t

BBEdit modelines support?

2010-02-04 Thread Dave Ely
Does BBEdit support vim modelines? It's not in the 9.2.x manual but it does seem to work, albeit somewhat erratically. -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to bbedit@googlegroups.co

search: "not beginning-of-line followed by string"

2010-12-14 Thread Dave Ratcliffe
I'm trying to replace the following sort of strings in a very large text file (where “some_text” is one or more of any group of printable characters, and “$” is eol): some_text with: some_text$ And I'm trying, unsuccessfully, to remember how to write the expression in the Find: text box of the

Re: search: "not beginning-of-line followed by string"

2010-12-15 Thread Dave Ratcliffe
ressions," is recommended. Is there anything that any of you think is superior to this as a comprehensive reference for grep and regular expressions? Thanks again for your time and help! Dave -- You received this message because you are subscribed to the "BBEdit Talk" discussion g

Re: Need Version Management System Recommendations

2011-07-14 Thread Dave Fitch
Does anyone know where a version control beginner can find a good how- to for Subversion? I've had a copy for a while and am sort-of using it, but I feel like I've not really got a clue what I am doing. I've gone through the online tutorials/help but still don't feel that confident. -- You receiv

.htaccess vs. language modules - BBEdit 10

2011-07-19 Thread Dave Fitch
Hi there Can anyone tell me how I can get BBEdit 10 to automatically set .htaccess files to use the Apache Configuration File language setting? Have looked in the manual and am none the wiser. Dave -- You received this message because you are subscribed to the "BBEdit Talk" discussio

Re: .htaccess vs. language modules - BBEdit 10

2011-07-20 Thread Dave Fitch
On Jul 20, 12:23 am, Rich Siegel wrote: > On Tuesday, July 19, 2011, Dave Fitch wrote: > >Can anyone tell me how I can get BBEdit 10 to automatically set > >.htaccess files to use the Apache Configuration File language setting? > > In the Languages preferences, add a Cus

Re: Preferences window

2011-07-20 Thread Dave Fitch
On Jul 20, 12:55 am, LuKreme wrote: > The preferences window is not resizable, and the sidebar is not resizable > either. This means that I have to waste space on the left side AND I can't > see a full list of the available settings in the Preference pane. > > OK, I'm sure someone thought this

Re: .htaccess vs. language modules - BBEdit 10

2011-07-21 Thread Dave Fitch
While the Language Preferences ask for 'a suffix', they seem to want '.suffix' which to my little mind is not quite the same thing. Will send a note to support. On Jul 20, 12:08 pm, Dave Fitch wrote: > On Jul 20, 12:23 am, Rich Siegel wrote: > > > On Tuesday,

Re: Extensive Horizontal Scroll?

2011-07-21 Thread Dave Fitch
I use a magic mouse and it's very frustrating when the text on screen suddenly vanishes sideways... On Jul 20, 2:42 am, Dan wrote: > Is there any reasoning behind the extensive available document horizontal > scroll even if no text extends beyond the window boundary?  Seems odd to my > eye.  Sinc

Re: Can "Currently Open Documents" go back to where it was?

2011-07-26 Thread Dave Fitch
n documents and have to scroll through a tiny section [only displaying 6 documents] when if I could just make the section bigger I could see many more... Dave -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this

Re: BBEdit 10 Head-Scratchers

2011-07-28 Thread Dave Fitch
efault Project Window” That works for *projects* - not for document windows per se. I have exactly the same problem Marty has - "Save Default Project Window" does not seem to affect document windows, but it does work on projects. Dave -- You received this message because you are

Re: Edit multiple documents in split view?

2011-08-11 Thread Dave Fitch
I would second this request: quite often I'm working on related files and would like to see them in separate panes of the same window [admittedly the larger the screen you have the more likely you are to want this...]. Opening a related file in a separate window isn't really a great solution - I'd

Re: Edit multiple documents in split view?

2011-08-11 Thread Dave Fitch
useful but as you say it's not great. Perhaps the solution is to attach a script to this menu item, as per another thread... :) Dave -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to

Re: BBedit 10: Images and Alternative Text

2011-08-17 Thread Dave Fitch
I would have thought useful metadata would be in the caption or keyword fields rather than the comment field... [which I thought should be used for comments about the image/image creation process, rather than a description of the image per se]. The problem with EXIF is that there are so many places

Re: Why BBE pisses me off

2011-08-21 Thread Dave Fitch
get an option to move the document to a new editor that does not have a file list, so there is some inconsistency...] Dave -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to bbedit@goo

Re: How to get Balance Tags to include the tags

2011-08-27 Thread Dave Hein
of that clean up later (I anticipate need this script quite a bit). For now, I'm quite happy -- lots of tedium avoided. Thanks to everyone who contributed suggestions. All were appreciated. Awesome response folks! -- Dave Hein On 23 Aug, 2011, at 18:25, DaveHein wrote: > I have a lot o

Sort Lines: need checkboxes for Remove Duplicates and Natural Order

2012-02-27 Thread Dave Yost
Does anyone else agree that these features belong in the Sort UI of a text editor that doesn't suck? ;-) 1. It is a common occurrence that when sorting, one needs to remove duplicates. The unix sort command has had a –u option to do this for at least 35 years. 2. It is a common occurrence that wh

Re: Sort Lines: need checkboxes for Remove Duplicates and Natural Order

2012-02-28 Thread Dave Yost
1. The Process Duplicate Lines feature is not a checkbox in the Sort Lines panel, nor is a text factory a checkbox. A text factory is just a fancy and easier-to-use form of scripting and is 100 times harder to use than a checkbox — not appropriate for this simple, oft-used feature of sorting. 2. O

  1   2   >