wrapping python strings

2018-02-15 Thread Seth Dillingham
Our policy at work is that Python files have a line length limitation of 80 
columns. This is a slight pain when we have strings that are longer. Python 
makes this fairly easy to deal with, though: sequential strings in parens are 
concatenated automatically into a single string. So a line like this:

s = 
'01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789'



Can instead be written like this:



s = 
(‘01234567890123456789012345678901234567890123456789012345678901234567890123'

 '456789012345678901234567890123456789')



Now suppose I have a string that is hundreds of characters long  (or more). 
Like that first `s = '...'` line, above, but it’s much longer. Perhaps a few 
dozen such lines.


Any suggestions on how I could wrap that text automatically?

I’ve seen some very python-centric editors that are smart about this. If the 
cursor is put somewhere in the string and you hit return, it closes the string 
there, adds the return, indents the new line, and then continues the string by 
adding another quote. So the second example, above, could has been made by 
putting the cursor right after that 3 and hitting return (assuming the parens 
were already there).

I’m not looking for PyCharm features in BBEdit, I’m just hoping for some clever 
way to wrap strings and indent them properly, all (or mostly) automatically.


Suggestions?

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: Disable auto complete

2017-11-28 Thread Seth Dillingham
On Tue, Nov 28, 2017 at 11:07 AM, Gustave Stresen-Reuter <
tedmaster...@gmail.com> wrote:

> Is it reasonable to think that holding down a modifier key could
> temporarily disable this feature?
>
> I ask because I normally want it on but there are times when I really only
> want to type a single quote. For example, if I'm fixing a bug, like this:
>
> echo 'lipsum;
>
> I need to add a single quote between the m and the semicolon. By default,
> two will be added.
>
> An alternative would be to select the word that I want to have quoted and
> type a single quote and have BBEdit "know" that I only need it to add the
> single quote on the right.
>
> Is this reasonable?
>

This all seems very reasonable. 95% of the time the matching delimiters is
really handy, but that other 5% is a little annoying. It needs some
tweaking, IMO.

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: Can somebody explain me how to use python autocomplete in BBEDIT?

2015-04-15 Thread Seth Dillingham
On Wed, Apr 15, 2015 at 1:36 PM, Sotiris Ioannou 
wrote:

> I've tried doing my own clippings but I'm wondering if there is an easy
> way to do this.
>

I'm pretty sure the problem is that BBEdit doesn't consider the . an
auto-complete character.

Possible solution: change the names of your clippings. Use an _ underscore
(or any character that is considered valid for auto-complete) instead of a
dot, but have the contents of the clippings files include the dots.

So you'd type io_ to get a list similar to your screenshot, but it would
show io_close, io_flush, etc. However when you select an item, it would
actually insert io.close or io.flush because that's what is in the
clippings file.

Seth

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.


Re: [ANN] BBEdit 11.1 (3711) pre-release

2015-03-26 Thread Seth Dillingham
On Wed, Mar 25, 2015 at 12:47 PM, Lorin Rivers  wrote:

> > On Mar 25, 2015, at 10:58 AM, Rich Siegel  wrote:
> >
> > *   [DOC] BBEdit now has built-in support for Git. There is a Git
> >menu in the menu bar, which presents available operations (most
> >of which may only be enabled when the active document corresponds
> >to a file that is in a local Git working copy).
> >
> >The intent is not to function as a full-featured Git GUI, but rather
> >to support common file operations so that you can perform tasks on
> >the file(s) you're working on in BBEdit without having to switch to
> >the command line or a dedicated GUI client.
> >
>
>
> Woo hoo!


There's been some talk about the *lack* of git support in BBEdit… it's nice
to someone offer a "woo hoo!" now that it's being added.

I'll echo it. Woo hoo! :-)

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.


Re: Assigning BBEdit Window Placemements with Multiple Displays

2014-11-23 Thread Seth Dillingham
On Sat, Nov 22, 2014 at 1:40 PM,  wrote:

> I want an open file in each of two visible BBEdit windows side-by-side on
> the 27" display, with other open files hidden behind them and ready to be
> recalled.  My thoughts are that a combination of scripting and short-cut
> key assignment should make it possible to open a file and assign it to
> either the right or left side of the external display.
>

Have you ever looked at Moom ? I can do
basically what you described with just one or two clicks per window. I use
this app all the time.

Seth

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.


Re: CSS syntax colouring in BBEdit 11

2014-10-23 Thread Seth Dillingham
On Thu, Oct 23, 2014 at 7:47 PM, LuKreme  wrote:

> twitter drizzle about the kerfuffle in Seattle (I think it was Seattle)


While I think it's always drizzling in Seattle, I believe the particular
drizzle to which you refer precipitated in Quebec.

-- 
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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.


Re: Regaining mindshare for BBEdit

2013-03-21 Thread Seth Dillingham
On Tue, Mar 19, 2013 at 12:48 AM, David Shea  wrote:

> and the ability to split a window would be handy
>

Do you mean something like what the window-splitter does now? It's up at
the top right of the window, immediately above the scrollbar (or at least
above where the scrollbar would be if your mac doesn't show scrollbars). It
looks like a dark, horizontal line, just the width of the scrollbar.

Or maybe you meant something else, when you said "split a window." Sorry if
I misunderstood.

Seth

-- 
-- 
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




entabbing source code

2013-02-20 Thread Seth Dillingham
When entabbing source code (of nearly any language), I only want the
leading whitespace to be tabbified.

Unfortunately, current behavior is to entab all multi-space runs throughout
the lines.

The project I'm on at the moment has strings with long runs of space in
them, which must not be changed to tabs.

Does anyone have a script handy which entabs only the leading whitespace?

I can certainly write one, but I'm up to my ears already and if someone has
one already I'm happy to use it. :-D

Thanks,

Seth

-- 
-- 
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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 received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Save document from template preview

2011-10-01 Thread Seth Dillingham

On 9/29/2011, jawalsh said:


I used the preview template feature quite a bit. I'd like to be able
to save the full HTML documents somehow. That is, I create a text file
with an HTML fragment. I preview it a template that is creating a
virtual complete HTML document. I want to save that complete HTML doc
as a new file. Is this possible? Can it be made so?


I like this idea, too. It's a small step in a very interesting 
direction, where BBEdit starts to accept its role as a full, 
templated HTML publishing system. It's a small step, but I like it.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: [ANN] BBEdit 10.0.2 (3101) pre-release

2011-09-26 Thread Seth Dillingham

On 9/26/2011, Rich Siegel said:


*   [DOC] [NFR] Additional refinements to full screen mode switching:
when entering full screen mode, the window's current width is
used, *unless* `FullScreenWindowsHogScreen` is turned on, in
which case the window will take up the whole screen. To toggle
this behavior on the fly, Command-click on the full screen widget.


I have to say… Full Screen mode feels perfect now. It's 
exactly how I hoped it would be when the feature first appeared.


--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: [ANN] BBEdit 10.0.2 (3097) pre-release

2011-09-21 Thread Seth Dillingham

On 9/21/2011, G. T. Stresen-Reuter said:


On Sep 21, 2011, at 9:26 PM, Chip Warden wrote:


click the full-screen zoom button and the window width to become the screen 
width.


I don't have Lion so I can't test what you're trying to do, but 
are you saying you want to be able to click the full-screen 
zoom button and have the window take up the whole width but not 
the whole height?


No, what he's saying is that no matter how anyone responded, he 
was going to try out the new shiny.


A new cross platform editor? Yeah, I'm sure that's going to be 
better than BBEdit.


The only thing some people love more than the new shiny is the 
same old drama.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: Code folding

2011-09-18 Thread Seth Dillingham

On 9/18/2011, Aman said:


I read the Appendix-D of BBedit-10's manual that explains codeless
language modules. But wasn't able to understand what changes should i
make to this info.plist in VerilogHDL.bblm language module to make it
fold the begin-end blocks!


Aman,

The Verilog module is compiled code. It is not a codeless 
language module.


You'll find an info.plist file in all BBEdit language modules, 
and those info.plist files do have some similarities to codeless 
language modules, but they're not the same thing.


Probably the best way to get folding support into the Verilog 
module is to write to supp...@barebones.com and request it.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: Syntax highlight single-line comments

2011-09-13 Thread Seth Dillingham

On 9/13/2011, Evan said:


BBEdit doesn't seem to highlight // comments in CSS files; I feel like
it used to do this in 8/early 9, but haven't seen it for a while.
What's the deal?


I haven't seen any replies to this yet, which suggests Google 
Groups is being flaky and by the time my reply comes through, 
dozens of others will, too.


Anyway...

BBEdit doesn't support // comments because that's not a CSS 
comment format. CSS only uses /* comments */


See 

Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: [ANN] BBEdit 10.0.2 (3091) pre-release

2011-09-12 Thread Seth Dillingham

On 9/12/2011, Rich Siegel said:


*   When previewing documents in a particular language, you can specify
the default CSS to be used when previewing, simply by placing an
appropriately named CSS file in `Application Support/BBEdit/Preview
CSS/`. The name of the file should be of the pattern
`DefaultCSS_*.css`, in which the `*` is replaced by the name of the
language. So, for example, to designate a file as the default CSS
for previewing Markdown, you'd name the file
`DefaultCSS_Markdown.html`.


Are we allowed to cheer for new features?

YAY!!!

If the answer to the above is "no", then I humbly apologize. :-D

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: Applying tag to multiple paragraphs

2011-09-12 Thread Seth Dillingham

On 9/12/2011, stevedennie said:


I've been through all of the pref menus, but can't find a solution.

Am I missing something, or was this functionality removed?


I tend to write entire paragraphs on one "line" in the HTML 
document, so I find the current behavior less than ideal.


It was easy enough to work around, it, though. Try the following 
search-and-replace grep pattern:


Find: ^(.+)(\r?)(?:\r?)
Replace: \1\2

Make sure "[x] Grep" and "[x] Select text only" are both 
checked. Select the paragraphs you want to tag, and run that search-and-replace.


I have it as a saved pattern, so it's not like I'm typing it 
every time.


Could always put this in a script or a Text Factory, too, so 
that it could have a command-key assigned to it.


Of course it would be idea if there were some way to tell the 
HTML tools that you want this tag applied to each line of the 
current selection, instead of the whole selection at once. That 
would work wonderfully for , , , and lots of other cases.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: function popup menu will not hide anonymous functions

2011-09-06 Thread Seth Dillingham

On 9/6/2011, RickL said:


defaults write com.barebones.bbedit
LanguageSpecific:ShowAnonymousFunctions:JavaScript -bool yes


This was changed for BBEdit 10 but I don't see the new pref key 
documented anywhere.


Try this:

defaults write com.barebones.bbedit 
ShowAnonymousFunctions_JavaScript -bool YES


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: TextExpander, BBEdit 10 and typing lag

2011-09-02 Thread Seth Dillingham

On 9/2/2011, Watts Martin said:


Just curious -- has anyone else noticed a definite typing slowdown in BBEdit 10 
with TextExpander enabled?


Yes, in fact it was so bad for me I had to disable TextExpander. 
But it started for me back under early betas of 10.0, I think, 
so I've (sadly) had TE disabled for quite a while.


I also noticed it in the browser, especially when using 
browser-based gMail.


What language(s) are you working in when you see these 
slowdowns? (or doesn't it make a difference?)


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: slow repeat rate in 10 on lion

2011-09-01 Thread Seth Dillingham

On 9/1/2011, tpneumat said:


Glad I'm not the only one.  The problem is also greatly exaggerated
when shift-arrow selecting text.  It makes doing selections with
keyboard only almost impossible...which is a big deal in a text editor
for me, since I keep my hands off the mouse as much as possible.


Holding down the option key when shift-arrowing to select might 
help speed things up a bit, as it will jump across whole words.


And, of course, command-shift-arrow will do the whole line.

Other than for selecting text, why would you need a really fast 
key repeat?


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: LaTeX language colouring

2011-08-12 Thread Seth Dillingham
On Aug 12, 2011, at 1:38 AM, Tim Lahey  wrote:

> I've noticed that the LaTeX language colouring isn't colouring \end
> commands in the same manner as \begin. It makes things a bit harder to
> read since the \end tag blends into the subsequent paragraph.

Is it never working correctly, even when you first open the doc (before editing 
it)? A bug was just fixed for this which is available in the current 
pre-release version.

-- 
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: Mourning the loss of Find extend selection option

2011-08-02 Thread Seth Dillingham

On 7/30/2011, Geoff Hicks said:


Finding and replacing multiple blocks of text bounded
by definable search strings that may be separated by many hundreds, if
not thousands of arbitrary lines has never been possible (stack
overflows, except when intervening lines < ~100) within TextWrangler
or BBEdit. The files may be many hundreds of MB in size. My only
workaround was to define a search expression for the start block and
another for the end block then alternate the searches, toggling the
extend selection checkbox in the modal find dialog. With key bindings
for all the components of this replacement strategy, excluding the
alternating search expressions, this process was reasonably efficient.


Geoff,

Have you considered using a script for this work?

You could certainly imitate the original behavior with a script. 
Run the first search, get the index of the result, run the 
second search, get the index of the result, set the selection to 
the full range.


No?

Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: 


BBEdit Extras Wiki

2011-07-27 Thread Seth Dillingham
I haven't seen mention of this before, so maybe nobody else 
knows about it either...


There's a wiki with info about the various ways available for 
extending BBEdit (language modules, packages, scripts, etc.) here:




(I had nothing to do with the creation of this site, I was 
simply shown a link to it.)


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: What am I missing in BBEdit 10?

2011-07-22 Thread Seth Dillingham

On 7/22/2011, NotInUse said:


And yes it's BBEdit 10.
There's little mistaking it when you see the HTML Palette.


Agreed.

...


I had to make a movie showing nothing happening and they've now asked
for the html file. Although, this happens with any file. It's clearly
a bug in the app.


I ran some tests here.

The behavior I'm seeing is exactly as you describe if I set the 
language to "(none)".


I'm not suggesting that yours is set to "(none)", but rather 
that something may be confusing BBEdit on your machines into 
thinking your HTML documents are not really HTML documents.


You say it happens with any document? How widely have you tested 
that? Have you tried creating a completely new, blank, 
plain-text document and setting it's language to HTML, then 
immediately dropping an image into that empty window?


I ask that because BBEdit is known to use some of the tags in an 
HTML document to figure out what kind of document it is (that's 
why you were getting the xhtml version of the img tag). So 
perhaps your HTML has something in it that the app finds off-putting.


Just offering suggestions, but that's the last of them. 
Hopefully they'll help you figure it out soon.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: What am I missing in BBEdit 10?

2011-07-22 Thread Seth Dillingham

On 7/22/2011, John Delacour said:


I can only presume the 'document' you are referring to is not an html document 
because both things work fine here.


I did notice that new documents are no longer created as HTML by 
default OMM, and I seem to have misplaced the "default language" setting.


--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: What am I missing in BBEdit 10?

2011-07-22 Thread Seth Dillingham

On 7/22/2011, NotInUse said:


I appreciate the responses, but you all seem to have the impression
(at least as I interpret it) that this is my first rodeo. I assure
you, it's not.


No, I think we just don't care how experienced you are. It makes 
no difference.


That's not a personal attack, it's just the blunt truth.


I see the same (faulty) results on multiple Macs running different OS
versions. Not one system. This immediately rules out corrupt
preferences or other system specific items. I realize (and have
posted) that it does not rule out user error. I, honestly, do not see
how, after 10+ years of use, user error could be the issue. But who
know.. I guess stranger things have happened. Point being, I'm not new
to the app.. or Macs.. or any of this I am left to believe it's
fault in the app itself.


Perhaps it is a fault in the app itself. So?

How is being exceptionally rude on a mailing list of other users 
going to help?


This is why you're getting the responses you're so unhappy 
about. The main point of most of your posts is NOT that the app 
isn't acting working how you think it should, but rather that 
you should be able to report that fact in whatever voice you 
like, in any forum you choose, and still get professional support.


Yet this is the BBEdit users discussion list, not the Bare Bones 
support forum. The only official channel for support is via the 
mailing address to which you already wrote (apparently). So 
bringing this attitude here suggests that you are either mad at 
us, the users, for the app not working correctly, or you want to 
waste our time with rants about the company who makes the 
software we're all using.


So which is it?


I can absolutely state, without fail that no image insertion, whether
via the HTML palette button, or dragging from the desktop to a
document or from anywhere is inserting the full HTML markup for an
image tag.


That's not true, because it's working just fine for me.

But what you probably meant is to add, "on my machine, and I'd 
like help understanding why that is while I wait for the very 
busy folks at Bare Bones to get back to me on my support request."


Right?


I get 


There might actually be something of a clue there... when I 
insert an image, I don't get the XML tag-closing thing at the 
end. I hate to ask this (as it will probably just prompt another 
story about the rodeos you've been to), but are you 100% certain 
you're running version 10? :-D



I've shown the BareBones team my support for many, many years with my
money and recommendations.


Why are you telling us this? We don't care. We're all customers.

Around here, the rules of thumb are generally: Ask polite 
questions, get excellent answers from some of the smartest 
people around. Whine too much, and at best you're on your own.



And in all that time, I've never asked for
any support or anything other than a functional app. Which is all I'm
asking for here. If you all don't seem to like how I ask for a
functional app... well.. you didn't need to respond, now did you?


Again, I think you've missed the fact that this is the user 
list, not the support forum.



It's a purchase, and I don't like purchasing products only to receive
defective items. I expect certain hiccups and issue with new release
software. But it's not standard to suddenly be missing core features.


You can take our word for it that this "core feature" is working 
for most of us. If it weren't working during the beta, I 
personally would have reported it, but it is working quite 
nicely OMM. (But then, developers always say that...)


None of what I've said here is a personal attack, though you're 
free to take it that way if you choose to.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: Adding \\ to comments

2010-12-24 Thread Seth Dillingham

Nick,

I'm sorry that I didn't see this until now, but did you ever get 
an answer to this?


The solution, if nobody else told you, is to create your own 
Codeless Language Module. If that's truly the ONLY thing you 
want it to do, then your module is going to be extremely simple.


See here: 


On 12/15/2010, Nick Matzke said:


So when I look at a .tex file (for LaTex) I see that BBedit colors the
formatting words that start with a backslash, e.g.:

\author{Nick Matzke}

\begin{document}

\maketitle

\texttt{kruskal.test}

...it colors them blue, which is very nice for readability.

However, I am editing .Snw files, not tex directly, and I only want to
add the blue-color behavior for .Snw files, not other features BBedit
does to .tex feils (e.g. $ this stuff gets colored pink $)

So I can't just copy a tex.plist file (which doesn't exist anyway, I
guess because coloring for tex is default and so specified somewhere
other than /Users/nick/Library/Application\ Support/BBEdit/Language\
Modules/ .

Advice would be very welcome. Cheers!!


--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: [ANN] BBEdit 9.6.1 (2845) pre-release

2010-11-02 Thread Seth Dillingham

On 10/30/2010, Walter Ian Kaye said:


You fixed a non-reproducible bug? Wow.


You think that's impressive? I had the benefit of working from 
Mr. Siegel's office for a few hours today (no joke), and saw him 
commit a fix for a *planned* feature.


Seriously, he's that good.


Next thing we know, you'll be announcing breakfast at Milliway's. :)


Well, the above coding session did follow a very nice breakfast, 
but it's been more than a half hour and the universe is still 
here (so far as I can tell), so apparently said breakfast wasn't 
at Milliway's.


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: #mark in Python

2010-10-13 Thread Seth Dillingham

On 10/13/2010, Tim Gray said:

I'm sorry. I totally missed that you were talking about perl 
originally. From what I've seen, there is a 'comment marker' 
syntax for TeX, Python, and C variants.  There might be for 
other languages as well, but as you have found, it's terribly 
undocumented.  I found hints of this behavior in old release notes.


I was going to make some joke about knowing the guy who wrote 
these modules, and beating him until he produces an update to 
the perl module which supports something like the Python 
module's #mark. However…


It makes sense that it's on a language by language basis, since 
each language has it's own syntax parser module.  If I were a 
betting man, I'd say this functionality might work for 
Javascript and Ruby as well, amongst others, since the author 
of all of these parsing modules is the same:





Yeah, you caught me.

The Perl module doesn't support it, as BB hasn't done an update 
for it. Perl's syntax is so hairy that I'm not sure anybody 
really wants to touch that module. Let me say that another way: 
perl's syntax is so hairy that I'm sure nobody really wants to 
touch that module.


(It's certainly not my place to say if it will or won't happen, 
though. I can only make those sorts of decisions when I take 
possession of Mr. Siegel's brain, which has proven difficult of late.)


Actually, IMO this has pointed out a bug in the python module, 
too. Needing to use ##mark instead of just #mark is silly, at 
best. (I'm pretty sure that only #mark was required when I first 
wrote it... it may have been altered, intentionally or 
otherwise, at some later time.)


Seth

--
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at

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: When is next major version of BBEdit going to be released?

2009-09-24 Thread Seth Dillingham

On 9/24/2009, cnymike said:

>Nobody really knows I suppose except the developers and/or beta
>testers (who are under an NDA). So I guess I can either apply to be a
>beta tester, or just wait it out... patiently tapping fingers,
>crossing fingers, wringing fingers...

I know that the beta testers now know that they don't even know 
when the next point release will come out, never mind a major 
upgrade like 10.0.

You know?

No, you don't, or didn't, but now you know that you don't. Or 
you think you do.

Confused? Don't be. It's all perfectly simple. The beta testers 
don't really know what you think they know, though many of them 
do know that they don't know it.

Hope that clears things up.

Seth


--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Codeless Language Module question

2009-09-21 Thread Seth Dillingham

On 9/21/2009, Francisco Hirsch said:

>I am writing a Codeless Language Module for WebDNA.
>I have two questions
>a) WebDNA tags use square brackets ("[" and "]") as in 
>[Text]...[/Text]. How do I put them in the .plist so the they 
>show up colored like the tag (in this case Text)?
>b) Dumb question: I would like to see the html tags colored 
>(differently) while using the WebDNA CLM. Is this possible at all?

CLM's are very limited at this point.

For syntax coloring, you get the following options:

1. A pattern for describing what a "string" looks like

2. A pattern for describing what a "comment" looks like

3. A static list of keywords.

4. A static list of "predefined names." (These are different 
from keywords because, um... they're called "predefined names." 
See how that works?)

That's it.

So, for your WebDNA [tags], you can either color them as strings 
or comments, or build a complete list of all of the opening and 
closing tags and put that list into the appropriate spot for 
keywords or predefined names.

CLM's can NOT be used for general purpose coloring of whatever 
structures/text-runs you want.

Honestly, if you try to create a CLM that colors [WebDNA] tags 
and , all you will actually produce is a big headache.

Seth


--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Codeless Language Modules Question

2009-09-15 Thread Seth Dillingham

On 9/14/2009, HobbesianTiger said:

>I'm attempting to write a codeless language module for a variant of
>Prolog, and was wondering how to have BBEdit highlight all
>'variables'. A variable is essentially and alphanumeric string that
>starts with an uppercase letter.

The problem here is that there are a limited number of ways to 
color anything in a CLM.

Your only choices are strings and comments, really. You'd just 
set up the patterns for one of them to color Variables as well.

Seth


--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "supp...@barebones.com" rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Filter/Script to uudecode?

2009-07-28 Thread Seth Dillingham

On 7/28/2009, Warren Michelsen said:

>Is there a way (script or filter) to take selected text in the 
>front-most BBEdit document, pass it to uudecode and paste the 
>result into the document in place of the encoded text?

1. Create a new document, paste in the following lines:

#!/bin/sh

uudecode -p "$1"

2. Save it at

~/Library/Application Support/BBEdit/Unix Support/Unix Filters/uudecode.sh

(where "~" is your home directory)

3. Open the uuencode-ed file you want to decode.

4. In the #! menu (called "shebang" 'round here), select Unix 
Filters -> uudecode.sh

The decoded version should open in a new document. Just copy and 
paste it in.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: New MacBook Pro had 9.1.1 installed but where???

2009-06-28 Thread Seth Dillingham

On 6/28/2009, Jeffrey Jones said:

>If you can launch it, you can find it. Click on the Dock icon 
>and  select "Show in Finder".

Or just command-click on the item in the dock.


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Where Can I Find the HTML Language Module

2009-06-11 Thread Seth Dillingham

On 6/10/2009, Indy Nagpal said:

>Does that mean that if I was to create a Language Module for another
>markup language (like CFML), then I have to start from scratch? I was
>just hoping that there would be a easy way to get the common
>functionality like figuring out comments etc. from existing language
>modules, and then add one's own language specific keywords to the
>list.

I was going to say, "there is an alternative, you could hire 
someone to write it for you!" with a wink wink and a nudge 
nudge, but I see Rich essentially made my point for me.

If you want some instructions on writing a CLM (a codeless 
language module) I do have a sort of tutorial (SORT OF) on my 
site, which has been used by others on this list.



You won't get a module with all of the features of a native BBLM 
(compiled code), but you will get syntax coloring, some code 
folding, and functions in the function popup.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Where Can I Find the HTML Language Module

2009-06-09 Thread Seth Dillingham

On 6/9/2009, Indy Nagpal said:

>Does anyone know where can I find the HTML/XML Language Modules in
>BBEdit?
>
>I want to copy them and create my own module for another markup
>language that has a few different things.

There's isn't a separate module, it's baked into the app.


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Embedded language background colour

2009-05-18 Thread Seth Dillingham

On 5/18/2009, SJB said:

>I have tried setting the Background colour in the JavaScript entry in
>the Languages preference, but that seems to have no effect. If you
>change the other colours, like Comments for example, then the change
>works, but the background colour doesn't. In fact, as far as I can see
>the background colour is always just the colour set in the 'Text
>Colours' preference section - the one in the language doesn't have any
>effect.

If you open a JavaScript document, I believe you'll find that 
your background color in that document is whatever you chose in 
the language prefs.

There is currently no way to give a different background color 
to an embedded language like JavaScript in PHP.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: HTML strings in Python

2009-05-08 Thread Seth Dillingham

On 5/8/2009, dsr said:

>How exactly are these supposed to be formatted to be displayed in the
>functions popup? I can't seem to get them to work.

1. It must be a triple-quoted string.
2. The first non-white character (not a tab, space, return, etc) 
must be a '<'

The HTML itself isn't listed in the function popup. It just 
lists the items from the HTML just as if that section was its 
own HTML document. So for example:

"""
http://www.truerwords.net/";>me
"""

... would not list anything in the function popup, but this would:

"""
http://www.truerwords.net/"; id="me">me
"""

Hope that helps!


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: BBEdit 9.2

2009-05-07 Thread Seth Dillingham

On 5/7/2009, AlanR said:

>Next to the file path display in the editing view toolbar, there
>is a little popup menu. Click it to get a menu showing the file’s
>path, and choose an item from the menu to reveal it in the Finder.

I don't think I see it either, but I may be looking in entirely 
the wrong spot.

The menu next to the file path display at the top of an editing 
view does NOT show the file's path (that would be weird, since 
the file path is already there). It shows four items for copying 
the [path, full path, url, name]. None of them suggest to me 
that they will reveal the file in the finder.

Clicking the file's icon in the toolbar DOES reveal the file in 
the finder.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Find / Replace or insert text

2009-05-04 Thread Seth Dillingham

On 5/4/2009, Doug McNutt said:

>You need to set 7/9 punches in column 72 of the wrap around control card that 
>goes in the drum at the top of the 026 punch.
>
>Once you do that you can punch FORTRAN sequence numbers automatically.

Hey I just found a reason to use Mailsmith's "flag message" 
feature as a way to "fave" a message.

Very funny and retro-nerd-cool, Doug.


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Find word & delete line

2009-05-02 Thread Seth Dillingham

On 5/2/2009, Doug McNutt said:

>Is a start requiring that $word be surrounded by two non-word characters but  
>will fail when $word begins or ends a line.
>
>There's also the problem that perl's definition of a word character includes 
>programming conventions, particularly the underscore.
>
>BBEdit probably does a better job of understanding the OP's 
>actual desires. What if he actually wants to include hyphenated 
>instances which include -\n ?

I think the expression I sent handles all of the cases you mentioned.

Obviously, though, if \W doesn't do what he wants then he can 
create his own negated character class like [^a-zA-Z].

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Find word & delete line

2009-05-02 Thread Seth Dillingham

On 5/1/2009, Greg Reyna said:

>I'm trying to write a script that will open an ascii file, search for
>a word, delete the entire line that word is on, then search again to
>EOF, and save.  Apple Script gives me the shivers.  Usually, if I can
>find a script that does something similar to what I need, I can modify
>it to make it work.  Can't find anything like this, simple as it seems
>to be.

Does it have to be a script?

This Grep search pattern:

^.*[^\w\r]?YOUR_WORD_HERE(?:\r|\W.*(?:\r|\Z)|\Z)

Seems like it will find what you want. Use an empty replace pattern.

Even if you do have to use a script for some reason, that grep 
pattern is probably a good starting point.

Or, um, as Steve said... just use Process Lines Containing

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: AS 3.0 language module

2009-04-21 Thread Seth Dillingham

On 4/21/2009, axolx said:

>Out of curiosity, was this included in
>a recent update? I thought when 9.0 shipped the built-in AS module did
>not support folding and certain language keywords (which in turn led
>me to find the 3rd party module)

See the BBEdit 9.0.2 release notes:



Just search for "ActionScript". Repeatedly.

Before that release, ActionScript was essentially treated just 
like JavaScript (for good reasons).

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: AS 3.0 language module

2009-04-16 Thread Seth Dillingham

On 4/16/2009, stratboy said:

>Hi! Why still you don't distribute an official AS 3.0 language module?
>I'm using the one created by a user some months ago, but... I think
>it's a mandatory feature to become official, don't you?

If you have installed a 3rd party language module, you need to 
remove it and update your language settings (in the prefs) 
before the built-in module will work.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Grep help?

2009-03-26 Thread Seth Dillingham

On 3/26/2009, Ronald J Kimball said:

>> Sometimes there is a  tag, and sometimes there is not, often
>^^
>>  there are no spaces or formatting at all, other times it's 
>>expanded   out to the maximum amount
>
>That's a very important detail.  Seth's regex assumes that there will
>always be a  tag.  Here's a slightly modified version that uses a
>positive lookahead to allow for a missing  tag:
>
>(?s:<([uo]l)[^>]*>\s*(?>]*>.*?(?:\s*|(?=)

Yeah I think my regex was perfect for the problem as first 
described. This little detail would have been helpful (or would 
have let me be more helpful).

Just catching up, I got a big load of messages from the list all 
at once.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: Grep help?

2009-03-26 Thread Seth Dillingham

On 3/25/2009, le...@gmail said:

>I know I can do this with a negative look-ahead something or 
>other,  but despite years and years of regexs, I do not grok 
>that particular  mechanism.
>
>I want to search for lists that contain at least 10 list items.

Try this:

(?s:<([uo]l)[^>]*>\s*(?>]*>.*?\s*){10,})

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
bbedit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "supp...@barebones.com" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: How to make my clipping set the default. & stick!

2008-09-19 Thread Seth Dillingham

On 9/19/2008, Govinda said:

>I really DO want to be able to make my clipping set stay the 'default'
>set

Is it that you always want the same clipping set, no matter what 
language your file is?

Or, is it that you want your custom clipping set to be chosen 
whenever you are working in an HTML file?

The instructions that Jim gave you will only help with the 
former, I think.

If you want your custom clipping set to be chosen whenever you 
open a new HTML document, then it must sort "higher" than the 
default HTML.html set. That's working for me, here.

There is no preference that lets you say, "Please use clipping 
set XYZ whenever I'm working with a file of this language." You 
just need to make sure that your clipping set sorts higher than 
whatever set would otherwise be used for that language.

Do you realize that it's ok to modify the default clipping set? 
You could just add your items to it, or back it up and then 
replace the whole thing.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "[EMAIL PROTECTED]" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: actionscript 3 CLM

2008-09-18 Thread Seth Dillingham

On 9/17/2008, Alan Watts said:

>Does anyone have a CLM for AS3 that supports folding for BBEdit 9?  8
>worked out of the box, but something is janked in 9 and it's not
>recognizing functions once a return type is specified (  :void {  ).

Have you filed a bug? I know the guy who works on the 
JavaScript/ActionScript module, and will pester him mercilessly 
until he fixes this. But only if you report it to BareBones first.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "[EMAIL PROTECTED]" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: SQL Language Module Too Old

2008-09-15 Thread Seth Dillingham

On 9/15/2008, Eric Landmann said:

>2008-09-15 13:07:08.670 BBEdit[2970] The language module at
>/Library/Application Support/BBEdit/Language Modules/SQL is too old to be
>loaded by this version of BBEdit. Please contact the module's developer for
>assistance.
>
>Is there a new SQL language module for download somewhere?

A new SQL module has come with BBEdit 8.6, 8.7 and 9.0.

Just remove/disable the one mentioned in your log entry, and 
restart BBEdit.

(Note that you *may* need to adjust your language mappings in 
the prefs after you restart BBEdit.)

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a specific feature request or would like to report a suspected (or 
confirmed) problem with the software, please email to "[EMAIL PROTECTED]" 
rather than posting to the group.
-~--~~~~--~~--~--~---



Re: BBEdit 9 - Syntax coloring not honoring settings

2008-09-01 Thread Seth Dillingham

On 9/1/2008, mirai said:

>Editing text constants trashes the coloring of these constants
>(ActionScript) -- reload needed to display correct coloring. (No
>problem with Perl or JavaScript.)
>Any doc in BBEdit 9.

Confirmed.

Gotta say that's really, really odd (says the guy who knows odd).

Don't worry about sending in a bug report on this one, I've got it.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/bbedit?hl=en
-~--~~~~--~~--~--~---



Re: I don't know if anyone's ever asked this, but...

2008-08-29 Thread Seth Dillingham

On 8/29/2008, Brian Frick said:

>Do you use BBEdit to write BBEdit?  I'm assuming you almost  
>exclusively use Macs to program, since the final product is 
>Mac-only.   But do you use any other platforms to help with 
>development of your  software?  I'm just curious.  Thanks!

I use platform shoes while coding the language modules. Does 
that count?


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/bbedit?hl=en
-~--~~~~--~~--~--~---



Re: The Ruby Language Module doesn't work

2008-08-29 Thread Seth Dillingham

On 8/28/2008, The Geek Inside said:

>However when I try to open some of my ruby scripts the Language Module
>doesn't recognize this as a Ruby file, I try too select the Languages
>from the languages in the left-bottom corner,  but anyway doesn't
>recognize my scripts.

Check your language preferences. You may have two Ruby entries, 
or 0. Fix
that and restart the app.

Seth


--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/bbedit?hl=en
-~--~~~~--~~--~--~---