diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-25 09:19:35 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-25 09:19:35 +0200 |
commit | b63df071bdf2cd7b93500f64bcf4759d1a941a74 (patch) | |
tree | 2120248b7361cd0e35d9804787fff80e084e1ee1 /editor/code_editor.cpp | |
parent | 25ff1306d62b8eb0487608b2a9bed0644e2fce17 (diff) | |
parent | e60678f193828c73dc17f3aa5418f2b0d64a0e2f (diff) | |
download | redot-engine-b63df071bdf2cd7b93500f64bcf4759d1a941a74.tar.gz |
Merge pull request #92514 from /addWordSeparators
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 595aff3bd0..7e07e626b1 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -1049,6 +1049,9 @@ void CodeTextEditor::update_editor_settings() { text_editor->set_smooth_scroll_enabled(EDITOR_GET("text_editor/behavior/navigation/smooth_scrolling")); text_editor->set_v_scroll_speed(EDITOR_GET("text_editor/behavior/navigation/v_scroll_speed")); text_editor->set_drag_and_drop_selection_enabled(EDITOR_GET("text_editor/behavior/navigation/drag_and_drop_selection")); + text_editor->set_use_default_word_separators(EDITOR_GET("text_editor/behavior/navigation/use_default_word_separators")); + text_editor->set_use_custom_word_separators(EDITOR_GET("text_editor/behavior/navigation/use_custom_word_separators")); + text_editor->set_custom_word_separators(EDITOR_GET("text_editor/behavior/navigation/custom_word_separators")); // Behavior: Indent set_indent_using_spaces(EDITOR_GET("text_editor/behavior/indent/type")); |