From a0395ce093e0f87399d867a735ddd3ab6defb807 Mon Sep 17 00:00:00 2001 From: chrys87 Date: Wed, 6 Dec 2017 16:25:41 +0100 Subject: [PATCH] Update 46000-tab_completion.py --- src/fenrir/commands/onCursorChange/46000-tab_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir/commands/onCursorChange/46000-tab_completion.py b/src/fenrir/commands/onCursorChange/46000-tab_completion.py index affc34e2..a90c07f5 100644 --- a/src/fenrir/commands/onCursorChange/46000-tab_completion.py +++ b/src/fenrir/commands/onCursorChange/46000-tab_completion.py @@ -35,7 +35,7 @@ class command(): if len(currDelta.strip()) != len(currDelta) and \ currDelta.strip() != '': currDelta = currDelta.strip() - self.env['runtime']['outputManager'].presentText(currDelta, interrupt=True, ignorePunctuation=True, announceCapital=True, flush=False) + self.env['runtime']['outputManager'].presentText(currDelta, interrupt=True, announceCapital=True, flush=False) def setCallback(self, callback): pass