diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-30 11:47:28 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-30 11:47:28 +0200 |
commit | 838eb5a0fdcfa0e0f368a6d33a0f712db90c9719 (patch) | |
tree | 565c508efbc85bac44c367ba697277882b0c1df6 /editor/plugins/script_editor_plugin.h | |
parent | ffad49f1693cc292df88955573e8fe197a41bcd0 (diff) | |
parent | b4c1634b52f619ca8987b67ecee2640310781aa7 (diff) | |
download | redot-engine-838eb5a0fdcfa0e0f368a6d33a0f712db90c9719.tar.gz |
Merge pull request #87099 from bitwise-aiden/ba-add-trim-newlines
Implement `trim_final_newlines` setting and functionality
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r-- | editor/plugins/script_editor_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index 6f8e71ce75..9db1aff76a 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; |