This commit is contained in:
Kovid Goyal 2022-05-19 09:55:12 +05:30
parent 1938ba3108
commit eb84990f5a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -177,7 +177,7 @@ def create_screen(self, cols=5, lines=5, scrollback=5, cell_width=10, cell_heigh
s = Screen(c, lines, cols, scrollback, cell_width, cell_height, 0, c)
return s
def create_pty(self, argv, cols=80, lines=25, scrollback=100, cell_width=10, cell_height=20, options=None, cwd=None, env=None):
def create_pty(self, argv, cols=80, lines=100, scrollback=100, cell_width=10, cell_height=20, options=None, cwd=None, env=None):
self.set_options(options)
return PTY(argv, lines, cols, scrollback, cell_width, cell_height, cwd, env)