20 lines
850 B
Python
20 lines
850 B
Python
#!/bin/python
|
|
|
|
class command():
|
|
def __init__(self):
|
|
pass
|
|
def run(self, environment):
|
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'charEcho') and\
|
|
environment['screenData']['newCursor'] - environment['screenData']['oldCursor'] ==1:
|
|
return environment
|
|
ttyChanged = environment['screenData']['newTTY'] != environment['screenData']['oldTTY']
|
|
if environment['screenData']['newDelta'] == environment['screenData']['oldDelta'] and \
|
|
not ttyChanged:
|
|
return environment
|
|
environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newDelta'], ttyChanged)
|
|
return environment
|
|
def setCallback(self, callback):
|
|
pass
|
|
def shutdown(self):
|
|
pass
|