On 08/03/2018, at 13:09, W.J. Llope <[email protected] <mailto:[email protected]>> wrote: > One thing I liked about TextWrangler was that I could make the FTP Browser > window quite narrow, effectively showing only filenames in the pwd. BBEdit's > version of this window appears to have a (rather large) minimum value for > this width. Is there any 'defaults' I could change (i did RTFM), or some > other trick?
Hey Bill, That does seem a little limiting. You should make a feature-request to the support address <[email protected] <mailto:[email protected]>> (see the message footer). For now you can get around the problem with AppleScript: ---------------------------------------------------------------- tell application "BBEdit" set bounds of front window to {0, 45, 300, 1196} end tell ---------------------------------------------------------------- Bounds are upper-left-corner and lower-right-corner: {x1,y1, x2,y2} -- Best Regards, Chris -- This is the BBEdit Talk public discussion group. 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> --- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/bbedit.
