summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-30 17:03:04 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-30 17:03:04 +0200
commite19b808a7afa498921beee95ec15321ab29b735d (patch)
tree0924bc49b4ac76790316b07086338f358e763846 /editor/code_editor.h
parentd9bf750cbf9b24103f85f43856e771fb739df4c8 (diff)
parent773a473807c75975b5820b30a4f0eccaece7cfa2 (diff)
downloadredot-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.h8
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);