Merge pull request #17314 from robfram/complete-path-15813

Fix bad autocomplete of partially written node paths when using syntactic sugar notation ($)
This commit is contained in:
Rémi Verschelde 2018-03-13 12:16:51 +01:00 committed by GitHub
commit 88c1430613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5238,7 +5238,7 @@ void TextEdit::_update_completion_candidates() {
} else {
while (cofs > 0 && l[cofs - 1] > 32 && _is_completable(l[cofs - 1])) {
while (cofs > 0 && l[cofs - 1] > 32 && (l[cofs - 1] == '/' || _is_completable(l[cofs - 1]))) {
s = String::chr(l[cofs - 1]) + s;
if (l[cofs - 1] == '\'' || l[cofs - 1] == '"' || l[cofs - 1] == '$')
break;