add missing punctuation to the default list

This commit is contained in:
Volkan Gezer
2024-06-27 12:26:02 +02:00
parent 7907ef835d
commit 76b2e5b2c8
3 changed files with 3 additions and 3 deletions

View File

@ -472,7 +472,7 @@ String TextEdit::Text::get_custom_word_separators() const {
}
String TextEdit::Text::get_default_word_separators() const {
String concat_separators = "´`~$^=+|<>";
String concat_separators = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~";
for (char32_t ch = 0x2000; ch <= 0x206F; ++ch) { // General punctuation block.
concat_separators += ch;
}