Merge pull request #73344 from MewPurPur/yeet-empty-line-error-spam
Fix autocomplete persisting at the beginning of a line and throwing errors
This commit is contained in:
commit
0ddbd9bd2d
1 changed files with 1 additions and 1 deletions
|
@ -2856,7 +2856,7 @@ void CodeEdit::_filter_code_completion_candidates_impl() {
|
|||
const int caret_line = get_caret_line();
|
||||
const int caret_column = get_caret_column();
|
||||
const String line = get_line(caret_line);
|
||||
ERR_FAIL_INDEX_MSG(caret_column - 1, line.length(), "Caret column exceeds line length.");
|
||||
ERR_FAIL_INDEX_MSG(caret_column, line.length() + 1, "Caret column exceeds line length.");
|
||||
|
||||
if (caret_column > 0 && line[caret_column - 1] == '(' && !code_completion_forced) {
|
||||
cancel_code_completion();
|
||||
|
|
Loading…
Reference in a new issue