Re: Single Line HTML Comments Possible?

2019-05-20 Thread BeeRich
That was it. > On May 20, 2019, at 11:52 AM, Rod Buchanan wrote: > > > Yes. Do not include the newline character at the end of line. Cheers beer...@gmail.com -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email

Re: Optimized Balancing

2019-05-20 Thread BeeRich
I guess I should add, “am I missing anything in BBEdit?” Cheers BeeRich -- 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 @bbedit on Twitt

Re: Log Clearing in BBEdit

2018-06-25 Thread BeeRich
I find Folder Actions to be third party software. AppleScript is/should be replaced with something in the future. It’s old and bloated. Ruby comes installed and I live in the stuff. I needed something quick and light. This works like a charm. > On Jun 25, 2018, at 5:50 PM, Tom

Re: Log Clearing in BBEdit

2018-06-25 Thread BeeRich
The issue isn’t that they aren’t showing up. Log entries, like I said, are a whole page long. My goal was to erase them between iterations/code editing. Going to the console and clearing every time is like tying my shoes up every 15 seconds. In any case, the filewatcher gem

Re: Log Clearing in BBEdit

2018-06-25 Thread BeeRich
How so? > On Jun 25, 2018, at 11:30 AM, Rod Buchanan wrote: > > > The Console app in Applications->Utilities might do what you want also. Cheers beer...@gmail.com -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem,

Re: Apply mods to Selected Text Only

2017-04-11 Thread BeeRich
Indeed. Works like a charm now. I feel for the “Text Factories” in “Text Factories ƒ” trick. Thanks Rich. > On Apr 11, 2017, at 3:01 PM, Rich Siegel wrote: > > On Tuesday, April 11, 2017, BeeRich33 wrote: > >> /Users/rich/Dropbox/Application

Re: Apply mods to Selected Text Only

2017-04-11 Thread BeeRich
Hi Sam. Thanks for the input. Ya this is for appending to config files for FreeBSD setup. So it’s all manually inserted. I thought I’d be targeting current lines to target files (hence the syntax) and thought I’d find a way of modifying these lines using BBEdit. As Patrick has

Re: Problem with Single Window Differences UI Staggered Windows

2015-04-07 Thread BeeRich
I thought it was common knowledge that JavaScript is replacing AppleScript. On Apr 6, 2015, at 8:52 PM, Tom Robinson barefootg...@gmail.com wrote: Source? People have been saying that for years. AppleScript may not be a high priority for Apple, but they diligently keep it running

Text Parsing

2014-03-02 Thread BeeRich
Hi folks. I have a challenge for the BBEdit peeps out there. I have a PDF that has a chart in it. I want to turn it into some real data as the pdf is pretty much useless to me. Upon copying a page of cells, I want to parse that into tab delimited text in BBEdit, but the cells wrap and I

Re: Remove Duplicates But One

2013-07-23 Thread BeeRich
You can copy duplicates to a new file or the clipboard, then count the lines in BBEdit. On 2013-07-23, at 9:18 AM, Garth Fletcher ga...@jacqcad.com wrote: I often want to know how many duplicates existed. First step is to Sort the lines in BBedit. Next I save the file, making sure to set

Re: Text Factory Confusion

2013-04-08 Thread BeeRich
On 2013-04-08, at 10:34 AM, Patrick Woolsey pwool...@barebones.com wrote: Please allow me to reiterate the distinction between text filters and scripts, since that's the root of your question: A _text filter_ is any executable item* meeting the conditions described in the manual

Re: Text Factory Confusion

2013-04-08 Thread BeeRich
Well put. Thank you. On 2013-04-08, at 2:56 PM, Patrick Woolsey pwool...@barebones.com wrote: Partly a matter of preference, and partly that each method has its own distinct advantages: AppleScripts are best suited to some tasks, shell scripts to others, while text factories provide an easy

Re: Text Factory Confusion

2013-04-08 Thread BeeRich
Hi there. The problem isn't about what filter to apply. I know the filter (Prefix/Postfix). I was just unclear about how to apply the filter with the window open, to document 1 in BBedit. The solution was just to save the executable and call it in the menu or Filters window. Cheers On

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Hi Bo. Thanks for the reply. Unfortunately that didn't work either on 777. On 2011-06-22, at 3:15 PM, Robert Huttinger wrote: it may be a permissions issue, try setting permission to 755 or 777 and try again -- You received this message because you are subscribed to the BBEdit Talk

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Hi Patrick. That resulted in a doesn't understand the open message. If I want to avoid the POSIX syntax, do I use colons? Still didn't work. On 2011-06-22, at 3:25 PM, Patrick Woolsey wrote: The path format doesn't match; assuming you want to use Unix paths: set myF to POSIX file

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
OK, got it to work: open myF as alias Any clarification on the POSIX notation? Thanks Patrick! On 2011-06-22, at 3:25 PM, Patrick Woolsey wrote: set myF to POSIX file /Users/pwoolsey/Desktop/foo.txt tell application BBEdit open myF end tell -- You received this message because

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
(not sure if this went through) OK, got it to work: open myF as alias Any clarification on the POSIX notation? Thanks Patrick! On 2011-06-22, at 3:25 PM, Patrick Woolsey wrote: set myF to POSIX file /Users/pwoolsey/Desktop/foo.txt tell application BBEdit open myF end tell -- You

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
I tried recording it, but she wouldn't give me any syntax. Tried colons, didn't work. Cheers On 2011-06-22, at 3:12 PM, Lorin Rivers wrote: Glen, In all my scripts that open files, I use this structure instead: open {file infernal:private:etc:apache2:httpd.conf} Which is

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
But then I can't initiate it from FileMaker. That's the whole point of this. If I was in BBEdit originally then I could just click on a Text Factory. I need FMP to launch that TF, but only after the file has been opened. On 2011-06-22, at 3:58 PM, Doug McNutt wrote: I'm biased but the

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Yes. I didn't know you were using Automator. I was trying to record in the AE window. On 2011-06-22, at 4:04 PM, Robert Huttinger wrote: this is like asking peter to punch paul for you but, if you open automator and your start a 'watch me do' session and select a folder, then stop. when

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Actually, while we are on topic, how do I select a text factory for the open file? As an option, I'm trying to use AppleScript syntax for a single replace and save. This is what I have for the replace, and she's not compiling: replace \x0B using \r searching in selection of text window 1

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Hey no apologies required. That's a great tool. I should use that in the future. On 2011-06-22, at 4:23 PM, Robert Huttinger wrote: Sorry, yes I know :) I was trying to give you a local option of viewing the exact syntax you were looking for but my way is confusing... -- You received

Re: AppleScript Open File in BBEdit 9.6

2011-06-22 Thread BeeRich
Hi Chris. Got it to work with colons and an alias in there. Cheers On 2011-06-22, at 6:16 PM, Christopher Stone wrote: Hey Rich, It's been mentioned that you're using the wrong syntax there to reference a file 'as alias'. -- You received this message because you are subscribed to

Re: Updating Website Content by Users - Slightly O.T

2011-06-22 Thread BeeRich
Have them modify only shtml ssh include files. Other than that, you're looking at a database driven site. On 2011-06-22, at 11:42 PM, Robert Huttinger wrote: I would very much appreciate any thoughts I could get from this bastion of experience on the best approach to designing a

Re: saving as BBEdit

2011-02-24 Thread BeeRich
Get info on a file. You should be able to select BBEdit (if not, choose the application) in the Open with: section, then click Change All… button so BBEdit becomes default. Maybe that helps. Maybe it don't. On 2011-02-24, at 4:10 PM, Nancy wrote: Ever since upgrading to 9.6.3, all my

Re: HTML5 Form Elements

2011-02-12 Thread BeeRich
Ya not so graceful after all. On 2011-02-11, at 7:48 PM, Paul Burney wrote: I've had problems with the newer input types using various browsers. In one case, I had multiple email address fields on a page (with other fields). Having them set to type=email caused browser autocomplete features

Re: HTML5 Form Elements

2011-02-08 Thread BeeRich
I recently wrote a simple HTML5 form test page and I noticed the following in Mac Safari (5.0.3): - a numbers field won't use the increment/decrement toggle buttons for decimals. - datetime, datetime-local and date are only demonstrating a text input. I believe Opera displays a proper

Re: HTML5 Form Elements

2011-02-07 Thread BeeRich
On 2011-02-06, at 10:42 AM, Brian M. Frick wrote: The article that, I believe it was Tom, posted, explains quite specifically how you can code in HTML5 and current browsers will gracefully ignore the new tags. I have begun coding all my sites in HTML5 and would *never* go back. I've seen

Re: HTML5 Form Elements

2011-02-07 Thread BeeRich
On 2011-02-07, at 11:35 AM, G. T. Stresen-Reuter wrote: This is just a guess but I think Brian was saying that the HTML 5 specification isn't there yet. Again, I'm just getting into HTML 5 (and thus, am speaking out of ignorance, not uncommon mind you) but I don't recall seeing an

Re: HTML5 Form Elements

2011-02-07 Thread BeeRich
I recently wrote a simple HTML5 form test page and I noticed the following in Mac Safari (5.0.3): - a numbers field won't use the increment/decrement toggle buttons for decimals. - datetime, datetime-local and date are only demonstrating a text input. I believe Opera displays a proper

Re: HTML5 Form Elements

2011-02-06 Thread BeeRich
On 2011-02-06, at 3:58 AM, Watts Martin wrote: Those aren't form elements, they are new types for the existing form input element. It is true that BBEdit's tag maker should handle these, as they're pretty important parts of the spec. However... I would have hoped for some kind of GUI for

HTML5 Form Elements

2011-02-05 Thread BeeRich
Hiya kids. Instead of asking in support, I thought I would ask here in the group. HTML5 has new form elements. They are not currently choosable in the posted most recent version (non-beta) of BBEdit. Will this change soon? Cheers -- You received this message because you are subscribed to

Re: HTML5 Form Elements

2011-02-05 Thread BeeRich
Specifically form elements: phone, search, url, email, datetime, month, week, time, datetime-local, number, range, and color. I would have hoped for some kind of GUI for building these types. I was under the impression that BBEdit would be all or nothing when it came to integrating HTML5.

Re: iPad

2010-02-22 Thread BeeRich
Formatting could be done after transfer to a full Mac anyway. Would be nice to be portable and have a great way of just creating text. As a developer, I'd probably want to whip down ideas and code on-the-fly. Excellent suggestion. On 2010-02-22, at 7:32 AM, RobS wrote: It's interesting

Re: Window/Document Behaviour

2010-02-21 Thread BeeRich
You can change the way it sorts open documents. I can't say why they aren't manually moveable. Check the prefs on that. For closing: command-option-w is the standard for choosing all for close. Works in the Finder too, so keep an eye open for dat. On Feb 18, 4:52 pm, OJB ojbax...@gmail.com

Using BBEdit for Arduino

2010-02-21 Thread BeeRich
Hello folks. I was wondering if anybody got BBEdit to work with the Arduino microcontroller. It has an IDE that I don't like at all. I'd rather use BBEdit, but it lacks some functions I'd like to get going. Apparently someone built a script for a single one liner, and I'll be chasing that up.

Re: 9.3 Warning: Document encoding mismatch

2009-11-10 Thread BeeRich
I keep getting the following warning: This document contains data which describes its encoding as Western (Mac OS Roman), but the encoding has been set to Western (Mac OS Roman). Saving this document as-is will likely cause unexpected display of its contents and may prevent BBEdit from opening