Re: Some ugly bugs

2012-02-21 Thread Jan Erik Moström
I suggest that you send an email to supp...@barebones.com, they
probably have some advise for you

On Sat, Feb 18, 2012 at 07:53, Jaff jaffe.m...@gmail.com wrote:
 I've noticed an unfortunate behavior recently, had not taken time to
 document it until now. I've been carrying a bunch of unsaved documents
 along, thankfully they've been auto-saved between launches,Most
 recently, following update to 10.1.1, I find a bunch of them
 duplicated. There are two Untitled 23, Untitled 24, Untitled 25,
 and so on. They contain identical content (both Untitled 23 are the
 same, both Untitled 4 are the same, and so on.)

 I also am having difficulty managing FTP/SFTP bookmarks. I had one
 saved with an old password, so I logged in using the new password and
 saved using the same name. Now I had two with the same name, and I
 could not tell which was which, so I used the Bookmark Manager panel
 to delete the - single - entry so I could re-enter it. But two entries
 still show up in the pop-up menu!

 --
 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.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: where did Markup-Utilities-Comment go?

2012-02-21 Thread David Kendal
On 21 Feb 2012, at 13:39, Mike Arnold maath...@gmail.com wrote:

 A short time ago, it seems as if 'Markup-Utilities-Comment'
 disappeared, now I only have 'Markup-Utilities-Remove Comments'.
 
 I really miss the function ... any idea where it might be hiding?

Could Un/Comment Selection in the Text menu be what you're looking for?

 thanks,
 Mike.

— dpk.

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: where did Markup-Utilities-Comment go?

2012-02-21 Thread Mike Arnold
David,

That works, so its all good.

Shew, I really thought that used to be in Utilities ... oh well,
another day, something forgotten! :-)

Mike.

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: where did Markup-Utilities-Comment go?

2012-02-21 Thread Lee Hinde

On Feb 21, 2012, at 6:44 AM, Mike Arnold wrote:

 David,
 
 That works, so its all good.
 
 Shew, I really thought that used to be in Utilities ... oh well,
 another day, something forgotten! :-)
 
 Mike.
 

The 'comment' commands were consolidated. You're not going crazy. Well, you may 
be going crazy, but this isn't why.


-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Regex help - convert ALL CAPS to Caps if WORD is only WORD on line

2012-02-21 Thread TJ Luoma

Hi, my name is TJ and I'm terrible at regular expressions :-)

Here's what I want to do:

Match: Any line which is one word long (where 'word' is defined as
ASCII letters, only) and that word is ALL CAPS

Do:
* Change word from UPPERCASE to Capitalized
* Put a colon after WORD
* Wrap that word (and colon) in ** **
* Change EOL to a space.

So, for example

FOO
bah ablah alasfas

would become

**Foo:** bah ablah alasfas

Possible?

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: Regex help - convert ALL CAPS to Caps if WORD is only WORD on line

2012-02-21 Thread Olof Svensson
English is not my first language. I try to keep it short, but I don't want to 
sound unfriendly.

Try
^([A-Z])([A-Z]+)$\r
replace
**\1\L\2:** 
--
Olof Svensson
--
A scientist will never show any kindness for a theory which he did not start 
himself.

-M.Twain



-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: Regex help - convert ALL CAPS to Caps if WORD is only WORD on line

2012-02-21 Thread Christian Boyce
I am sure that this is possible. 

I am also sure that there are a lot of people who can give you the magic 
formula, as easily as if you'd asked me for help spelling cat. However, if 
you don't get an answer from someone else, let me know. I speak a little GREP 
and think I could bang this out for you.

c
On Feb 21, 2012, at 11:11 AM, TJ Luoma wrote:

 
 Hi, my name is TJ and I'm terrible at regular expressions :-)
 
 Here's what I want to do:
 
 Match: Any line which is one word long (where 'word' is defined as
 ASCII letters, only) and that word is ALL CAPS
 
 Do:
 * Change word from UPPERCASE to Capitalized
 * Put a colon after WORD
 * Wrap that word (and colon) in ** **
 * Change EOL to a space.
 
 So, for example
 
 FOO
 bah ablah alasfas
 
 would become
 
 **Foo:** bah ablah alasfas
 
 Possible?
 
 -- 
 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.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit


--
Christian Boyce
Christian Boyce and Associates
Mac, iPhone, and iPad Consultants
New Main Phone Number: 424-354-3548

Read the Boyce Blog: http://christianboyce.blogspot.com
Follow us on Twitter! http://twitter.com/christianboyce
Be a fan on Facebook! http://tinyurl.com/cboyce-and-associates-facebook

Now Playing on The Boyce Blog: Built-in Siri Tip Sheet

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit


Re: Syntax highlighting for PHP variables

2012-02-21 Thread Phil Dobbin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 22/02/2012 00:38, Jake Davidson wrote:


 Hey guys, I'm wondering how I can make php variables show up in a
 specific color. I've looked at the colors tab in preferences, but to
 no avail. From what I can find online by googling, this seems
 impossible but I find it really hard to believe that a product this
 awesome really doesn't have something so basic. Am I missing
 something? Thanks for any help,


Whilst maybe not being exactly what you're looking but close, I use John
Gruber's `bbcolors for bbedit` (that you will find on Google).

BBEdit v.10 upwards only.

Cheers,

  Phil...

- -- 
But masters, remember that I am an ass.
Though it be not written down,
yet forget not that I am an ass.

Wm. Shakespeare - Much Ado About Nothing


-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: §auto-key-locate cert pka ldap hkp://keys.gnupg.net
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPRF60AAoJEKpMeDHWT5ADC1oH/12DzWVnUpxf7GWsknMGg4sF
Tzp3fWoH3ydqr9JC3vU0aO6czV8N/4x1GDmRZd7bviRxc6fBEZPPFXtzGGXAhS6/
85JegEMV0ElZKqkP+lWtpBqn60Ob4OVsxPFln9rylSTxmw4ixV5oFfmAMEI+1TVv
5Q6v1iqesC23CTFPATqLSr53Gyxt6VHAmNpGm2gBdgtKI+dWNEvA32bq59gH7yfl
QOzjtwF9ZeVqTSMTLmGF8VgWdARQ5TI/zGfbge0oqHD9RJzXNzltg1d0rUfpsq0D
l0UryhTNglJUjJe/89d/i48e/X9mHghQdNKArivJVITsJeCjiFS0hqwgsmFH4VY=
=wZxB
-END PGP SIGNATURE-

-- 
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.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit