QmlJS: Offer completion for words prefixed with +, -, *, /.

Task-number: QTCREATORBUG-2285
Reviewed-by: Roberto Raggi
This commit is contained in:
Christian Kamm
2010-09-08 15:56:44 +02:00
parent 34f37fb5e3
commit 81b96e474d

View File

@@ -588,6 +588,10 @@ bool CodeCompletion::isDelimiter(QChar ch) const
case ':': case ':':
case ';': case ';':
case ',': case ',':
case '+':
case '-':
case '*':
case '/':
return true; return true;
default: default: