Saadmairaj / tkterminal

Terminal widget for Tkinter library.
https://pypi.org/project/tkterminal
Apache License 2.0
58 stars 6 forks source link

Terminal only clears with "clear" but doesn't allow "cls" #16

Open Moosems opened 1 year ago

h3r0cybersec commented 1 year ago

because it was coded like this:

terminal.py - line: 131

...
if cmd == 'clear':
    return self._clear()
...

if you want to clear the screen also with 'cls' command, you have to add this condition to that line: or cmd == 'cls'.