From 556858e64d75fb316800ad34bda465b345ce3eb6 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Wed, 19 Sep 2018 18:06:20 -0400 Subject: Made common function to clear input lines in the terminal --- cmd2/rl_utils.py | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd2/rl_utils.py') diff --git a/cmd2/rl_utils.py b/cmd2/rl_utils.py index 4717c408..58bd6377 100644 --- a/cmd2/rl_utils.py +++ b/cmd2/rl_utils.py @@ -27,6 +27,7 @@ class RlType(Enum): # Check what implementation of readline we are using rl_type = RlType.NONE +vt100_support = False # The order of this check matters since importing pyreadline will also show readline in the modules list if 'pyreadline' in sys.modules: -- cgit v1.2.1