From 3e6fe633f34e66d224447ba917a3f293479f4d58 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 10 Oct 2017 14:15:18 +0200 Subject: [PATCH] more characters to auto complete whitespace list added --- src/debugger/gui/PromptWidget.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/debugger/gui/PromptWidget.cxx b/src/debugger/gui/PromptWidget.cxx index 7c9775681..945f25571 100644 --- a/src/debugger/gui/PromptWidget.cxx +++ b/src/debugger/gui/PromptWidget.cxx @@ -212,7 +212,8 @@ bool PromptWidget::handleKeyDown(StellaKey key, StellaMod mod) for (int i = 0; i < len; i++) { str[i] = buffer(_promptStartPos + i) & 0x7f; - if(strchr("{*@<> ", str[i]) != NULL ) + // whitespace characters + if(strchr("{*@<> =[]()+-/&|!^~%", str[i]) != NULL ) { lastDelimPos = i; delimiter = str[i];