Merge pull request #4583 from Paulb23/autocomplte_string_completion

Fixed autocomplete strings not appearing for function arguments
This commit is contained in:
Rémi Verschelde 2016-05-09 15:33:42 +02:00
commit b78b01354d

View file

@ -3903,7 +3903,7 @@ void TextEdit::_update_completion_candidates() {
}
}
if (l[cursor.column - 1] == '(' && !pre_keyword) {
if (l[cursor.column - 1] == '(' && !pre_keyword && !completion_strings[0].begins_with("\"")) {
cancel = true;
}