Skip to content
Snippets Groups Projects
Commit 81b96e47 authored by Christian Kamm's avatar Christian Kamm
Browse files

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

Task-number: QTCREATORBUG-2285
Reviewed-by: Roberto Raggi
parent 34f37fb5
No related branches found
No related tags found
No related merge requests found
...@@ -588,6 +588,10 @@ bool CodeCompletion::isDelimiter(QChar ch) const ...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment