diff options
Diffstat (limited to 'scene/gui/text_edit.cpp')
-rw-r--r-- | scene/gui/text_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index 233c7200ff..7b682daa83 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -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; } |