File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,10 @@ open class Terminal {
274
274
/// The current terminal rows (counting from 1)
275
275
public private( set) var rows : Int = 25
276
276
var tabStopWidth : Int = 8
277
- var options : TerminalOptions
277
+
278
+ /// Terminal configuration options.
279
+ /// Setup(isReset:) method should be called to apply changes
280
+ public var options : TerminalOptions
278
281
279
282
// The current buffers
280
283
var buffers : BufferSet !
@@ -603,7 +606,7 @@ open class Terminal {
603
606
return getCharData ( col: col, row: row) ? . getCharacter ( )
604
607
}
605
608
606
- func setup ( isReset: Bool = false )
609
+ public func setup ( isReset: Bool = false )
607
610
{
608
611
// Sadly a duplicate of much of what lives in init() due to Swift not allowing me to
609
612
// call this
You can’t perform that action at this time.
0 commit comments