Key Command to Move to Next Open Doc in Same Window

2012-04-16 Thread Rick Gordon
Is there a key command that will activate the next open document in a window 
(moving down one entry in the sidebar)?
-- 
___

RICK GORDON
EMERALD VALLEY GRAPHICS AND CONSULTING
___

WWW:   http://www.shelterpub.com

-- 
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: Key Command to Move to Next Open Doc in Same Window

2012-04-16 Thread Holger Bartel

On 16/04/2012 at 16:54:13 GMT+08:00 li...@rickgordon.com wrote:

Is there a key command that will activate the next open 
document in a window (moving down one entry in the sidebar)?


Should be cmd-alt-[ and cmd-alt-].

Best,
Holger

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


GREP help

2012-04-16 Thread David
I need some Grep help.

I need to remove this type of entry from a large file.

No Fly List:
101508
100698

Other options


ignore the quotation marks, I added them to illustrate the start and
end of the string.

Each six digit employee number begins with 1. Each line ends with a
carriage return.

The problem for a newbie like me is that there may be one or twenty
employee numbers, each on its own line, and I'm not sure how to handle
that. There is no hard limit on the number of 1x numbers to search
for between No Fly List:\r   and Other Options

Once I find all the occurrences of all the No Fly List entries, I am
going to remove them, but I know I can do that with a multi-file
search and replace, and replace the found string of varying number of
employee numbers with a single carriage return.

-- 
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: Key Command to Move to Next Open Doc in Same Window

2012-04-16 Thread Rick Gordon
The View  Next Document command seems to be erratic. Sometimes it moves nicely 
down the column, but it often bounces around out of listed sequence. I'm 
thinking it might have to do with the otrder tht the documents loaded, rather 
than their alphabetical sorting, as listed in the sidebar.

Rick Gordon

--

On 4/16/12 at 1:54 AM -0700, Rick Gordon wrote in a message entitled
Key Command to Move to Next Open Doc in Same Window:

Is there a key command that will activate the next open document in a window 
(moving down one entry in the sidebar)?

-- 
___

RICK GORDON
EMERALD VALLEY GRAPHICS AND CONSULTING
___

WWW:   http://www.shelterpub.com

-- 
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: GREP help

2012-04-16 Thread Ronald J Kimball
On Mon, Apr 16, 2012 at 10:54:55AM -0700, David wrote:
 I need some Grep help.
 
 I need to remove this type of entry from a large file.
 
 No Fly List:
 101508
 100698
 
 Other options
 
 
 ignore the quotation marks, I added them to illustrate the start and
 end of the string.
 
 Each six digit employee number begins with 1. Each line ends with a
 carriage return.
 
 The problem for a newbie like me is that there may be one or twenty
 employee numbers, each on its own line, and I'm not sure how to handle
 that. There is no hard limit on the number of 1x numbers to search
 for between No Fly List:\r   and Other Options

One line containing an employee number:

[ \t]*1\d{5}\r

One or more lines containing an employee number:

([ \t]*1\d{5}\r)+

:)


So, the complete pattern might look like this:

(?m)No Fly List:\r(\s*1\d{5}\r)+\rOther options


Ronald

-- 
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: Key Command to Move to Next Open Doc in Same Window

2012-04-16 Thread Christopher Stone
On Apr 16, 2012, at 13:48, Rick Gordon wrote:
 The View  Next Document command seems to be erratic. Sometimes it moves 
 nicely down the column, but it often bounces around out of listed sequence. 
 I'm thinking it might have to do with the otrder tht the documents loaded, 
 rather than their alphabetical sorting, as listed in the sidebar.

__

Hey Rick,

Scope out the expert preferences:
When using the Previous Document and Next Document commands on the View 
menu, or the navigation arrows in the navigation bar, the order in which BBEdit 
navigates documents is determined by the order in which they were opened. If 
you prefer, these commands can be made to navigate the documents in the order 
shown in the file list.

defaults write com.barebones.bbedit SurfNextPreviousInDisplayOrder -bool YES

--
Best Regards,
Chris

-- 
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: GREP help

2012-04-16 Thread David
Ron,

Perfect! Thanks (again)!

Best regards,

David

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


How do I uninstall BBEdit?

2012-04-16 Thread vladvino
I downloaded evaluation copy and would like to remove it. Would moving
BBEdit folder from Applications to Trash do the trick?

Thanks,

-Vlad

-- 
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: How do I uninstall BBEdit?

2012-04-16 Thread François Schiettecatte
Yes, and you could include:

~/Library/Application Support/BBEdit
~/Library/Preferences/com.barebones.bbedit.*
/Library/Preferences/com.barebones.bbedit.plist

François


On Apr 16, 2012, at 5:54 PM, vladvino wrote:

 I downloaded evaluation copy and would like to remove it. Would moving
 BBEdit folder from Applications to Trash do the trick?
 
 Thanks,
 
 -Vlad
 
 -- 
 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