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:
commit
88c1430613
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user