Thanks Chris, I'll file the requests.
But I was able to work around the problem by creating the following
applescript (I call it "Quick Grep Search Forward"):
--Display Dialog and Get Input
*display dialog* "Grep Search for..." default answer ""
--Get Answer & Return Comment
*set* theSearch *to* (text returned *of* result)
*tell* *application* "BBEdit"
*try*
*find* theSearch searching in *text* *of* *front* *text window* options {search
mode:grep, starting at top:false, wrap around:false, backwards:false, case
sensitive:false, match words:false, extend selection:false} *with* selecting
match
*end* *try*
*end* *tell*
--
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 [email protected]
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 feature request or would like to report a problem,
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>