mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
added extra newlines
This commit is contained in:
parent
3229f0fc98
commit
e2186ceae6
@ -233,7 +233,7 @@ fn run_event_loop(project_dir_path_opt: Option<&Path>) -> Result<(), Box<dyn Err
|
||||
if let Err(e) = input_outcome_res {
|
||||
print_err(&e)
|
||||
} else if let Ok(InputOutcome::Ignored) = input_outcome_res {
|
||||
println!("Input '{}' ignored!", ch);
|
||||
println!("\nInput '{}' ignored!", ch);
|
||||
} else {
|
||||
window.request_redraw()
|
||||
}
|
||||
|
@ -612,13 +612,13 @@ impl<'a> EdModel<'a> {
|
||||
|
||||
write_to_file(self.file_path, &all_lines_str)?;
|
||||
|
||||
println!("save successful!");
|
||||
println!("\nsave successful!");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn check_file(&mut self) -> EdResult<()> {
|
||||
println!("Checking file (cargo run check <file>)...");
|
||||
println!("\nChecking file (cargo run check <file>)...");
|
||||
|
||||
let roc_file_str = path_to_string(self.file_path);
|
||||
|
||||
@ -639,7 +639,7 @@ impl<'a> EdModel<'a> {
|
||||
}
|
||||
|
||||
fn run_file(&mut self) -> EdResult<()> {
|
||||
println!("Executing file (cargo run <file>)...");
|
||||
println!("\nExecuting file (cargo run --release <file>)...");
|
||||
|
||||
let roc_file_str = path_to_string(self.file_path);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user