Re: Go Here in Terminal

2014-10-28 Thread Jan Erik Moström
Sigh, I searched the manual but I couldn't find anything ... I promise

Thanks

On Tue, Oct 28, 2014 at 5:30 AM, Christopher Stone
listmeis...@suddenlink.net wrote:
 On Oct 27, 2014, at 03:55, Jan Erik Moström li...@mostrom.pp.se wrote:

 Is it possible to get BBEdit to use some other app than Terminal, like for 
 example iTerm?
 __

 Hey Jan,

 Look in the Expert Prefs.

 --
 Best Regards,
 Chris

 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

 ---
 You received this 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.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: 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, it will take up space on the page either horizontally or vertically, 
depending on whether it intervenes between block or inline elements, unless 
it inherits a font-size of zero.

On Monday, October 27, 2014 3:42:45 PM UTC-4, Gustave Stresen-Reuter wrote:

 Remember that white space between elements in HTML should not impact the 
 rendered display (contrary to behavior in prior versions of some browsers… 
 methinks my age is showing). 



-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: 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 li...@rickgordon.com 
 javascript: wrote: 

  img src=x1 style=display:inline-blockImage_1/aimg src=x2 
 style=display:inline-blockImage_2/a 
  
  ... would not. 

 I see. What I was referring to, though, was the space between elements 
 (not inside elements) which, IIRC, used to be a problem (but that was oh so 
 many moons ago, hard for a guy to remember). 

 Ted

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Hoe to run multi file searches as a script or macro

2014-10-28 Thread Christopher Stone
On Oct 27, 2014, at 18:56, Dave dave.live...@gmail.com wrote:
 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.

__

Has PCRE in (gnu) grep gone live?  It was experimental.  Wunderbar!  This seems 
to be true in v2.2.

Even so - the OP need not install it to use PCRE.  The `bbfind` cli-tool that 
comes with BBEdit should work and should be more tolerant of different 
file-encodings.

#! /usr/bin/env bash
srcDir=~/'test_directory/folders_nested_one/';
destDir=~/'Desktop/Nuts in Training!/';
mkdir -pv $destDir;
bbfind -gS '@(thisweek|nextweek)(?(?!@done).)*$' $srcDir | sed -E 's/:.+$//' 
| sort --unique | xargs -J % cp -v % $destDir

The output directory is created if not extant.

I've used `cp` in this one to be non-destructive, but that's easy to change to 
`mv` or `rm`.

I've also set `cp` to verbose output, so I know exactly what was done.

--
Best Regards,
Chris

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this message because you are subscribed to the Google Groups 
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: Emmet support

2014-10-28 Thread Maarten Sneep
Hi,

 On 27 Oct 2014, at 21:12, Rich Siegel sie...@barebones.com wrote:
 
 You'll have to ask the Emmet implementors to do it. They will tell you in 
 reply that BBEdit doesn't support the plug-in features that they need, to 
 which I say that they should be encouraged to look at the dialog front-ends 
 for text filters  that got introduced in 11.0 (and you can point them here: 
 http://www.barebones.com/support/technotes/filter-dialogs.html). If they 
 want to make an effort to work with what the app has to offer, we are happy 
 to answer any specific questions they may have. :-)

I have a question. Just for future reference I’m trying the instructions, you 
never know when this may prove useful (my latex tools could use an update…)

The user interface in Xcode 6 is shuffled around enough so that I can’t seem to 
find how to add a referencing outlet to the window. I’m struggling at the step 
“The window should have its delegate and window properties both bound to the 
File's Owner”, as it seems I can’t add a referencing outlet for ‘window’.

The argument behaviour handling is nice, however, I wonder what “String values 
(including file name paths) are not escaped or quoted in any way” means in 
practice. How do you call the script internally? Do string arguments with 
spaces end up in separate arguments from the point of view of the script? 
Adding the quoting would be nice as a future addition. (I was trying to answer 
these questions, but alas).

Thanks,

Maarten


-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Underlined text

2014-10-28 Thread Greg Raven
I dunno, but it does it on my BBEdit 11 under Yosemite, too.

On Monday, October 27, 2014 3:15:34 PM UTC-7, Lee Hinde wrote:

 it's a spelling alert. Not sure why not all uses are flaggged.

 On Mon, Oct 27, 2014 at 2:44 PM, Lee Hinde leeh...@gmail.com 
 javascript: wrote:

 Why is this text underlined?


 http://f.cl.ly/items/1g1O1i2R380O2K0o2Q0R/Image%202014-10-27%20at%202.43.07%20PM.png

 and why just some of it?


 (BBEdit 11, Yosemite)




-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Go Here in Terminal

2014-10-28 Thread François Schiettecatte
Hi

You have to go to Help - BBEdit Help - Expert Preferences, and search for 
Terminal:

• The Run in Terminal and Go Here in Terminal commands will use 
Apple's Terminal application by default. If you would like to use a different 
one:

defaults write com.barebones.bbedit TerminalBundleID -string 
com.example.TerminalAppBundleID

(Use the actual terminal's bundle ID in place of 
com.example.TerminalAppBundleID…)


Doing a quick google search yielded this to get the bundle ID of an app:


http://stackoverflow.com/questions/8742355/how-to-get-bundle-id-of-your-app-ios-uia-automation
 

Following these instructions I get:

keyCFBundleIdentifier/key
stringnet.sourceforge.iTerm/string

Looks like you are all set!

François


 On Oct 28, 2014, at 3:29 AM, Jan Erik Moström li...@mostrom.pp.se wrote:
 
 Sigh, I searched the manual but I couldn't find anything ... I promise
 
 Thanks
 
 On Tue, Oct 28, 2014 at 5:30 AM, Christopher Stone
 listmeis...@suddenlink.net wrote:
 On Oct 27, 2014, at 03:55, Jan Erik Moström li...@mostrom.pp.se wrote:
 
 Is it possible to get BBEdit to use some other app than Terminal, like for 
 example iTerm?
 __
 
 Hey Jan,
 
 Look in the Expert Prefs.
 
 --
 Best Regards,
 Chris
 
 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit
 
 ---
 You received this 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.
 
 -- 
 This is the BBEdit Talk public discussion group. If you have a 
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit
 
 --- 
 You received this 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.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Underlined text

2014-10-28 Thread François Schiettecatte
Its just the spell checked, you can switch that off in Preferences - Editor 
Defaults - Check spelling as you type.

François

 On Oct 28, 2014, at 7:22 AM, Greg Raven gregra...@gmail.com wrote:
 
 I dunno, but it does it on my BBEdit 11 under Yosemite, too.
 
 On Monday, October 27, 2014 3:15:34 PM UTC-7, Lee Hinde wrote:
 it's a spelling alert. Not sure why not all uses are flaggged.
 
 On Mon, Oct 27, 2014 at 2:44 PM, Lee Hinde leeh...@gmail.com wrote:
 Why is this text underlined?
 
 http://f.cl.ly/items/1g1O1i2R380O2K0o2Q0R/Image%202014-10-27%20at%202.43.07%20PM.png
 
 and why just some of it?
 
 
 (BBEdit 11, Yosemite)
 
 
 -- 
 This is the BBEdit Talk public discussion group. If you have a 
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit
 
 --- 
 You received this 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.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Go Here in Terminal

2014-10-28 Thread TJ Luoma
1) The easiest way to get the Bundle ID is to use Terminal:

 defaults read /Applications/iTerm.app/Contents/Info
CFBundleIdentifier

You can use this for any app, just replace /Applications/iTerm.app
with the path to the app itself, the /Contents/Info part stays the
same in 99% of the cases.

(Technically you only need the  marks if there is a space in the
path, but it won't hurt to use it either way.)


2) If you are using iTerm2, the Bundle ID is

   com.googlecode.iterm2

TjL





On Tue, Oct 28, 2014 at 7:24 AM, François Schiettecatte
fschietteca...@gmail.com wrote:
 Hi

 You have to go to Help - BBEdit Help - Expert Preferences, and search for 
 Terminal:

 • The Run in Terminal and Go Here in Terminal commands will use 
 Apple's Terminal application by default. If you would like to use a 
 different one:

 defaults write com.barebones.bbedit TerminalBundleID -string 
 com.example.TerminalAppBundleID

 (Use the actual terminal's bundle ID in place of 
 com.example.TerminalAppBundleID…)


 Doing a quick google search yielded this to get the bundle ID of an app:

 
 http://stackoverflow.com/questions/8742355/how-to-get-bundle-id-of-your-app-ios-uia-automation

 Following these instructions I get:

 keyCFBundleIdentifier/key
 stringnet.sourceforge.iTerm/string

 Looks like you are all set!

 François


 On Oct 28, 2014, at 3:29 AM, Jan Erik Moström li...@mostrom.pp.se wrote:

 Sigh, I searched the manual but I couldn't find anything ... I promise

 Thanks

 On Tue, Oct 28, 2014 at 5:30 AM, Christopher Stone
 listmeis...@suddenlink.net wrote:
 On Oct 27, 2014, at 03:55, Jan Erik Moström li...@mostrom.pp.se wrote:

 Is it possible to get BBEdit to use some other app than Terminal, like for 
 example iTerm?
 __

 Hey Jan,

 Look in the Expert Prefs.

 --
 Best Regards,
 Chris

 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

 ---
 You received this 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.

 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

 ---
 You received this 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.

 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

 ---
 You received this 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.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Underlined text

2014-10-28 Thread LuKreme
On 28 Oct 2014, at 05:30 , François Schiettecatte fschietteca...@gmail.com 
wrote:
 Its just the spell checked, you can switch that off in Preferences - Editor 
 Defaults - Check spelling as you type.

Yes, but why aren’t all the incidences of misspelt words underlined?

That seems… concerning. A tad.

-- 
We all need help with our feelings. Otherwise, we bottle them up, and
before you know it powerful laxatives are involved.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Underlined text

2014-10-28 Thread François Schiettecatte
It checks as you type.

F.

 On Oct 28, 2014, at 9:35 AM, LuKreme krem...@kreme.com wrote:
 
 On 28 Oct 2014, at 05:30 , François Schiettecatte fschietteca...@gmail.com 
 wrote:
 Its just the spell checked, you can switch that off in Preferences - Editor 
 Defaults - Check spelling as you type.
 
 Yes, but why aren’t all the incidences of misspelt words underlined?
 
 That seems… concerning. A tad.
 
 -- 
 We all need help with our feelings. Otherwise, we bottle them up, and
 before you know it powerful laxatives are involved.
 
 -- 
 This is the BBEdit Talk public discussion group. If you have a 
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit
 
 --- 
 You received this 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.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: Emmet support

2014-10-28 Thread Rich Siegel
On Tuesday, October 28, 2014, Maarten Sneep 
maarten.sn...@xs4all.nl wrote:



The user interface in Xcode 6 is shuffled around enough so that I
can’t seem to find how to add a referencing outlet to the window. I’m
struggling at the step “The window should have its delegate and window
properties both bound to the File's Owner”, as it seems I can’t add a
referencing outlet for ‘window’.


If you make the file's owner an NSWindowController, you should 
then be able to add a binding to the window property in the 
Outlets section.



The argument behaviour handling is nice, however, I wonder what
“String values (including file name paths) are not escaped or quoted
in any way” means in practice. How do you call the script internally?
Do string arguments with spaces end up in separate arguments from the
point of view of the script?


No; each argument is an element of $ARGV, so the absence of 
quoting means simply that spaces and other such are unescaped.



Adding the quoting would be nice as a future addition. (I was trying
to answer these questions, but alas).


If it proves to be necessary for working functionality, I'll 
certainly consider it; but I'm trying not to add complexity in 
advance of demonstrated need. :-)


R.
--
Rich Siegel Bare Bones Software, Inc.
sie...@barebones.com  http://www.barebones.com/

Someday I'll look back on all this and laugh... until they 
sedate me.


--
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email

supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this message because you are subscribed to the Google Groups BBEdit Talk group.

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: Emmet support

2014-10-28 Thread Maarten Sneep

 On 28 Oct 2014, at 15:51, Rich Siegel sie...@barebones.com wrote:
 
 On Tuesday, October 28, 2014, Maarten Sneep maarten.sn...@xs4all.nl wrote:
 
 The user interface in Xcode 6 is shuffled around enough so that I
 can’t seem to find how to add a referencing outlet to the window. I’m
 struggling at the step “The window should have its delegate and window
 properties both bound to the File's Owner”, as it seems I can’t add a
 referencing outlet for ‘window’.
 
 If you make the file's owner an NSWindowController, you should then be able 
 to add a binding to the window property in the Outlets section.

Thanks, that sentence is a helpful addition on the instruction page.

 The argument behaviour handling is nice, however, I wonder what
 “String values (including file name paths) are not escaped or quoted
 in any way” means in practice. How do you call the script internally?
 Do string arguments with spaces end up in separate arguments from the
 point of view of the script?
 
 No; each argument is an element of $ARGV, so the absence of quoting means 
 simply that spaces and other such are unescaped.

OK, this is probably what I would expect, but I’ll check.

 Adding the quoting would be nice as a future addition. (I was trying
 to answer these questions, but alas).
 
 If it proves to be necessary for working functionality, I'll certainly 
 consider it; but I'm trying not to add complexity in advance of demonstrated 
 need. :-)

With this information I can try it myself and see what happens. That’ll make my 
needs more clear. 

One argument form that may be missing is a command mode, like the update in ‘hg 
update’. The argument form for this would be just ‘value’. This would be useful 
in combination with a popup menu.

It would be nice to have an example to play with.

Best,

Maarten

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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.


[ANN] Erlang Language Module v1.3

2014-10-28 Thread Paul Guyot
Hello,

I'm pleased to announce v1.3 update of the Erlang language module, recompiled 
for BBEdit 11.

You can download it here:
https://github.com/pguyot/erlang-bblm/releases/tag/v1.3

Source code is available as well.

Changes:
• [ENH] Upgraded for BBEdit 11.
• [ENH] Updated completion lists for Erlang 17
• [FEA] Comments can now be spell-checked (BBEdit 11 addition).
• [FEA] include and include_lib files can be opened from the popup 
(BBEdit 11 addition).
• [FIX] Fixed algorithmic bugs revelead by Clang analyzer.

Regards,

Paul
-- 
Semiocasthttp://semiocast.com/
+33.183627948 - 20 rue Lacaze, 75014 Paris

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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.


BBEdit 11 does not reset BBEdit 10 trail period

2014-10-28 Thread wolf
So I have what, a couple of days left to trial a major version upgrade?

Reset me, baby. Been riding this pony since at least v6, that I can 
remember - possibly v5.

Sticking at v9 until further notice. v10 annoys me. v11 is a prettier pest. 

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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: BBEdit 11 does not reset BBEdit 10 trail period

2014-10-28 Thread Rich Siegel

On Tuesday, October 28, 2014, wolf blaidd...@gmail.com wrote:


So I have what, a couple of days left to trial a major version upgrade?


The demo period is thirty days long, and is reset for a major 
version. If you're observing something different, please write 
to support.


R.
--
Rich Siegel Bare Bones Software, Inc.
sie...@barebones.com  http://www.barebones.com/

Someday I'll look back on all this and laugh... until they 
sedate me.


--
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email

supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this message because you are subscribed to the Google Groups BBEdit Talk group.

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: javascript OSA script component

2014-10-28 Thread Gregg Thomason
in simple terms does that mean you can't use JavaScript for Automation? (I 
had some very strange issues trying it out during the beta)

On Wednesday, October 22, 2014 9:16:44 PM UTC-4, Rich Siegel wrote:

 On Wednesday, October 22, 2014, Dmitry Markman 
 dmar...@mac.com javascript: wrote: 

 it looks like that 
  
 JS component (Mac OS X 10.10) 
 /System/Library/Components/JavaScript.component has only one x86_64 
 arch 

 That is correct, and it has been reported as a bug against the 
 OS. (Because it is.) 

 therefore BBEdit 11 won't be able to use that component, because 
 BBEdit is i386 binary. 
  
 is there any plans to release x86_64 BBEdit? 

 Yes. But not soon enough in relation to this issue. :-) 

 R. 
 -- 
 Rich Siegel Bare Bones Software, Inc. 
 sie...@barebones.com javascript:  
 http://www.barebones.com/ 

 Someday I'll look back on all this and laugh... until they 
 sedate me. 



-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this message because you are subscribed to the Google Groups 
BBEdit Talk group.
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: javascript OSA script component

2014-10-28 Thread Rich Siegel
On Tuesday, October 28, 2014, Gregg Thomason gr...@neurobashing.com wrote:

 in simple terms does that mean you can't use JavaScript for Automation? (I 
 had some very strange issues trying it out during the beta)

Correct.

R.
-- 
Rich Siegel Bare Bones Software, Inc.
sie...@barebones.com  http://www.barebones.com/

Someday I'll look back on all this and laugh... until they sedate me.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this message because you are subscribed to the Google Groups 
BBEdit Talk group.
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: Underlined text

2014-10-28 Thread Lee Hinde
If I was typing 'th'-tab to auto complete, then it would only mark what I'd
actually entered... That would explain it.

But after I figured it out I did a bunch of 'learning' and so I can't
duplicate it.


On Tue, Oct 28, 2014 at 6:46 AM, François Schiettecatte 
fschietteca...@gmail.com wrote:

 It checks as you type.

 F.

  On Oct 28, 2014, at 9:35 AM, LuKreme krem...@kreme.com wrote:
 
  On 28 Oct 2014, at 05:30 , François Schiettecatte 
 fschietteca...@gmail.com wrote:
  Its just the spell checked, you can switch that off in Preferences -
 Editor Defaults - Check spelling as you type.
 
  Yes, but why aren’t all the incidences of misspelt words underlined?
 
  That seems… concerning. A tad.
 
  --
  We all need help with our feelings. Otherwise, we bottle them up, and
  before you know it powerful laxatives are involved.
 
  --
  This is the BBEdit Talk public discussion group. If you have a
  feature request or would like to report a problem, please email
  supp...@barebones.com rather than posting to the group.
  Follow @bbedit on Twitter: http://www.twitter.com/bbedit
 
  ---
  You received this 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.

 --
 This is the BBEdit Talk public discussion group. If you have a
 feature request or would like to report a problem, please email
 supp...@barebones.com rather than posting to the group.
 Follow @bbedit on Twitter: http://www.twitter.com/bbedit

 ---
 You received this 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.


-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
supp...@barebones.com rather than posting to the group.
Follow @bbedit on Twitter: http://www.twitter.com/bbedit

--- 
You received this 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.