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

QmlJS: Don't trigger completion for '/' outside string literals.

Reviewed-by: Roberto Raggi
parent 8a89a8bd
No related branches found
No related tags found
No related merge requests found
......@@ -537,6 +537,8 @@ bool CodeCompletion::triggersCompletion(TextEditor::ITextEditable *editor)
break;
}
}
if (ch == QLatin1Char('/'))
return false;
}
return true;
}
......
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