On 3/5/13 at 03:38, adejesus...@gmail.com (a de jesus) wrote:

Is there anyway to have two panels in BBEdit 10 so that my HTML file is one panel and CSS file in another panel. With both panels in one single window?

No. But the script below will set the two documents side by side. This works on the two windows nearest the front, but you can specify certain windows instead if you like.

tell application "BBEdit"
-- Place the second window alongside the first, giving it the same size
  set {_x1, _y1, _x2, _y2} to the bounds of the first window
set the bounds of the second window to {_x2, _y1, _x2 + (_x2 - _x1), _y2}
end tell

Now that drawers are retired you need to use a Project window to have more than one file available, but not simultaneously visible, in one window.


--JD

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


Reply via email to