diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-19 18:06:20 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-09-19 18:06:20 -0400 |
commit | 556858e64d75fb316800ad34bda465b345ce3eb6 (patch) | |
tree | 2de448aa92cbd7839d23319bc6253ee73bb31201 /cmd2/rl_utils.py | |
parent | 03c8d39263919ae4ca1e4cbae461b248d75ef653 (diff) | |
download | cmd2-git-556858e64d75fb316800ad34bda465b345ce3eb6.tar.gz |
Made common function to clear input lines in the terminal
Diffstat (limited to 'cmd2/rl_utils.py')
-rw-r--r-- | cmd2/rl_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
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: |