Brace completion for quotation marks was introducing another quotation mark at the end of the
string, I think because it wasn't checking that the quotation mark didn't exist at the current cursors position. Simple change, that fixed the issue and stood up to testing. Issue #25084
This commit is contained in:
parent
a8510331c0
commit
11f4b5efc5
@ -1494,8 +1494,7 @@ void TextEdit::_consume_pair_symbol(CharType ch) {
|
||||
}
|
||||
|
||||
if ((ch == '\'' || ch == '"') &&
|
||||
cursor_get_column() > 0 &&
|
||||
_is_text_char(text[cursor.line][cursor_get_column() - 1])) {
|
||||
cursor_get_column() > 0 && _is_text_char(text[cursor.line][cursor_get_column() - 1]) && !_is_pair_right_symbol(text[cursor.line][cursor_get_column()])) {
|
||||
insert_text_at_cursor(ch_single);
|
||||
cursor_set_column(cursor_position_to_move);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user