Fix undo history for function name autocompletion
This commit is contained in:
parent
e1eb3c2fb1
commit
19a0145742
1 changed files with 2 additions and 2 deletions
|
@ -6793,13 +6793,13 @@ void TextEdit::_confirm_completion() {
|
|||
|
||||
if (last_completion_char == '(') {
|
||||
if (next_char == last_completion_char) {
|
||||
_base_remove_text(cursor.line, cursor.column - 1, cursor.line, cursor.column);
|
||||
_remove_text(cursor.line, cursor.column - 1, cursor.line, cursor.column);
|
||||
} else if (auto_brace_completion_enabled) {
|
||||
insert_text_at_cursor(")");
|
||||
cursor.column--;
|
||||
}
|
||||
} else if (last_completion_char == ')' && next_char == '(') {
|
||||
_base_remove_text(cursor.line, cursor.column - 2, cursor.line, cursor.column);
|
||||
_remove_text(cursor.line, cursor.column - 2, cursor.line, cursor.column);
|
||||
if (line[cursor.column + 1] != ')') {
|
||||
cursor.column--;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue