Skip to content

Commit 783d8a9

Browse files
Fixed bug: enable_cpr should be True by default.
Bug was introduced in previous commit (2d4e7e8).
1 parent 2d4e7e8 commit 783d8a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prompt_toolkit/output/vt100.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def __init__(
420420
term: Optional[str] = None,
421421
default_color_depth: Optional[ColorDepth] = None,
422422
enable_bell: bool = True,
423-
enable_cpr: bool = False,
423+
enable_cpr: bool = True,
424424
) -> None:
425425

426426
assert all(hasattr(stdout, a) for a in ("write", "flush"))

0 commit comments

Comments
 (0)