mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #92514 from /addWordSeparators
This commit is contained in:
commit
b63df071bd
6 changed files with 157 additions and 0 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue