On Oct 08, 2012, at 08:00, KarlS <[email protected]> wrote:
> I'm rusty with BBEdit, but I think that I used to use a keyboard shortcut to 
> select all text between two tabs in a tab delimited file.  I can't 
> remember/find what that is. Can someone help?
______________________________________________________________________

Hey Karl,

There's nothing built-in to do that; you'll either have to find with a regular 
expression or use a script.

This should be close to what you want.

------------------------------------------------------------------------------------------------
tell application "BBEdit"
  tell text of front text window
    set bbFind to find "(?<=[\\t\\r])[^\\t\\r]+(?=[\\t\\r])" selecting match 
true ¬
      options {backwards:false, extend selection:false, search mode:grep, 
showing results:true, wrap around:false}
  end tell
end tell
------------------------------------------------------------------------------------------------

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



Reply via email to