diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-30 17:03:04 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-30 17:03:04 +0200 |
commit | e19b808a7afa498921beee95ec15321ab29b735d (patch) | |
tree | 0924bc49b4ac76790316b07086338f358e763846 /editor/code_editor.h | |
parent | d9bf750cbf9b24103f85f43856e771fb739df4c8 (diff) | |
parent | 773a473807c75975b5820b30a4f0eccaece7cfa2 (diff) | |
download | redot-engine-e19b808a7afa498921beee95ec15321ab29b735d.tar.gz |
Merge pull request #86978 from kitbdev/multicaret-overhaul
Overhaul multicaret editing and selection in TextEdit
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index c36eedb580..75a2a68d58 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -207,9 +207,6 @@ class CodeTextEditor : public VBoxContainer { void _toggle_scripts_pressed(); - int _get_affected_lines_from(int p_caret); - int _get_affected_lines_to(int p_caret); - protected: virtual void _load_theme_settings() {} virtual void _validate_script() {} @@ -238,11 +235,6 @@ public: void set_indent_using_spaces(bool p_use_spaces); - void move_lines_up(); - void move_lines_down(); - void delete_lines(); - void duplicate_selection(); - /// Toggle inline comment on currently selected lines, or on current line if nothing is selected, /// by adding or removing comment delimiter void toggle_inline_comment(const String &delimiter); |