refactor: move application title and subtext to root module

This commit is contained in:
CJ van den Berg 2024-08-23 22:19:47 +02:00
parent c627a49518
commit 409f636902
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 10 additions and 9 deletions

View file

@ -17,6 +17,9 @@ pub var max_diff_lines: usize = 50000;
pub var max_syntax_lines: usize = 50000;
pub const application_name = "flow";
pub const application_title = "Flow Control";
pub const application_subtext = "a programmer's text editor";
pub const application_description = application_title ++ ": " ++ application_subtext;
pub const std_options = .{
// .log_level = if (builtin.mode == .Debug) .debug else .warn,