Autosave on unfocus?

2011-10-20 Thread Robert M . Münch
Hi, I'm used to have my editor save stuff on unfocus. Is this possible
with BBEdit? I don't find any preference for this. Thanks Robert.

-- 
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: DTrace language module?

2011-10-14 Thread Robert M . Münch
On 12 Okt., 02:21, Fritz Anderson fri...@manoverboard.org wrote:

 The language module list at barebones.com, and Google, don't fill me with 
 hope, but I wonder if anyone knows of a BBEdit language module for D, the 
 scripting language for DTrace?

I only know The D programming language, which is more like C++ than
a scripting language. Do you mean this 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
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: Paging up down and currently selected line

2011-09-11 Thread Robert M . Münch
Am Freitag, 2. September 2011 19:20:44 UTC+2 schrieb Fritz Anderson:
 

 As for why, Mac applications have behaved like this since 1984. On a 
 terminal editor like emacs, there is no distinction between browsing a file 
 and moving the insertion location because terminals don't have a concept of 
 a cursor that isn't on the screen. The Mac design is that you shouldn't have 
 to lose your place in your work just because you wanted to look elsewhere in 
 your document.

Well, I'm not a Mac user since 1984 ;-). But Ok.
 

 If you use option-arrow up or down, you'll move the insertion point by a 
 screenful.


Thx. Didn't knew this... RTFM.
 

  And, it would be nice to add CMD+V without any selection to copy the
  whole current line.

 If I may venture to say, you'll be miserable switching between any other 
 application and BBEdit. Cmd-V is Paste. People want to paste things into 
 their documents even when the selection (there is always a selection) is 
 empty.


Sorry, I meant CMD+C... to copy the actual line without marking it first. 
Robert



-- 
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: Codeless Language Module / Function definition

2011-09-02 Thread Robert M . Münch
On 1 Sep., 22:25, Ronald J Kimball r...@tamias.net wrote:

 It appears that you have three left parens and four right parens.

That's just a typo here.

 That first asterisk also looks suspicious to me.  Should there be a period
 before it or something?

.* would mean every character 0 or more times. With the character
class in front and the + it should mean: These characters 1 or more
times.

 Yes, that is what the x means.  The colon just marks the end of the flags.

Ok. Thanks, that's not documented anywhere I looked at...

-- 
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


Paging up down and currently selected line

2011-09-02 Thread Robert M . Münch
Hi, why doesn't the cursor move when I page up and down in a file? I'm
always catches by paging to the place I need and start typing, which
results in BBedit jumping back to the still old actual line... how can
I change this.

And, it would be nice to add CMD+V without any selection to copy the
whole current line.

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

2011-09-02 Thread Robert M . Münch
On 2 Sep., 05:36, Seth Dillingham s...@macrobyte.net wrote:

Hi, I have the same problem it's not fast enough.

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

Well, to move the cursor around very fast ;-). If you have a lot of
code, it's just waste of time.

Robert

-- 
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


Codeless Language Module / Function definition

2011-09-01 Thread Robert M . Münch
Hi, I try to create a code less language module for Rebol. So far so
good. But I'm struggling to get the Function Pattern stuff to work.
This is the pattern I currently use:

string(?x: (?Pfunction (?Pfunction_name[A-Za-z]+)*\:.*func).*\
[))/string

When I use this, the CLM is not recognized by BBedit, which means,
there is an error in it. I read other modules, PCRE tutorials etc. but
I'm stucked. So, some questions:

What is this (?x: stuff about? Is this Turn on free-spacing mode to
ignore whitespace between regex tokens, and allow # comments.? But
than I'm wondering about the : in there.

If I just use string(?x:)/string the module loads but of course
this doesn't make sense. If I add now string(?x: (?
Pfunction_name.*))/string it won't work. A simple example how to
do this with ?Pfunction and ?Pfunction_name would help a lot.

-- 
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