make punctuation initial working

This commit is contained in:
chrys
2016-09-22 22:42:14 +02:00
parent 5454723d1f
commit ac6e11537c
8 changed files with 17 additions and 12 deletions

View File

@ -28,7 +28,7 @@ class command():
if currChar.strip(" \t\n") == '':
self.env['runtime']['outputManager'].presentText("blank" ,interrupt=True)
else:
self.env['runtime']['outputManager'].presentText(currChar ,interrupt=True)
self.env['runtime']['outputManager'].presentText(currChar ,interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass

View File

@ -28,7 +28,7 @@ class command():
if currChar.strip(" \t\n") == '':
self.env['runtime']['outputManager'].presentText("blank", interrupt=True)
else:
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True)
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass

View File

@ -28,7 +28,7 @@ class command():
if currChar.strip(" \t\n") == '':
self.env['runtime']['outputManager'].presentText("blank", interrupt=True)
else:
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True)
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass

View File

@ -33,7 +33,7 @@ class command():
return
currChar = self.env['screenData']['newContentText'].split('\n')[self.env['screenData']['newCursor']['y']][self.env['screenData']['newCursor']['x']]
if not currChar.strip(" \t\n") == '':
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True)
self.env['runtime']['outputManager'].presentText(currChar, interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass

View File

@ -28,7 +28,7 @@ class command():
# big changes are no char (but the value is bigger than one maybe the differ needs longer than you can type, so a little strange random buffer for now)
if len(self.env['screenData']['newDelta']) > 3:
return
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newDelta'], interrupt=True)
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newDelta'], interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass

View File

@ -35,7 +35,7 @@ class command():
# too much for a single backspace...
if len(self.env['screenData']['newNegativeDelta']) >= 5:
return
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newNegativeDelta'], interrupt=True)
self.env['runtime']['outputManager'].presentText(self.env['screenData']['newNegativeDelta'], interrupt=True, ignorePunctuation=True)
def setCallback(self, callback):
pass