make typing echo more useful

This commit is contained in:
chrys
2016-07-17 14:01:55 +02:00
parent 027be8a80b
commit 659e99d810
2 changed files with 5 additions and 3 deletions

View File

@ -8,7 +8,8 @@ class command():
environment['screenData']['newCursor']['x'] == environment['screenData']['oldCursor']['x']:
return environment
if environment['screenData']['newContentText'].split('\n')[environment['screenData']['newCursor']['y']][environment['screenData']['newCursor']['x']].replace(" ","").replace("\n","").replace("\t","") == '':
environment['runtime']['outputManager'].presentText(environment, "blank",True)
pass
#environment['runtime']['outputManager'].presentText(environment, "blank",True)
else:
environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newContentText'].split('\n')[environment['screenData']['newCursor']['y']][environment['screenData']['newCursor']['x']],True)