From b4c1634b52f619ca8987b67ecee2640310781aa7 Mon Sep 17 00:00:00 2001 From: Aiden Storey Date: Fri, 12 Jan 2024 00:32:13 -0500 Subject: Implement trim_final_newlines functionality --- editor/plugins/script_editor_plugin.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editor/plugins/script_editor_plugin.h') diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index e6bb8f14a9..53af4c8dad 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -174,6 +174,7 @@ public: virtual void set_executing_line(int p_line) = 0; virtual void clear_executing_line() = 0; virtual void trim_trailing_whitespace() = 0; + virtual void trim_final_newlines() = 0; virtual void insert_final_newline() = 0; virtual void convert_indent() = 0; virtual void ensure_focus() = 0; @@ -408,6 +409,7 @@ class ScriptEditor : public PanelContainer { bool open_textfile_after_create = true; bool trim_trailing_whitespace_on_save; + bool trim_final_newlines_on_save; bool convert_indent_on_save; bool external_editor_active; -- cgit v1.2.3