Improve export format slightly

- Use [...] instead of ... as placeholder
- Fix indentation on multiline messages
This commit is contained in:
Joscha 2022-07-08 00:06:02 +02:00
parent 0ccf788d7b
commit cd320b3678

View file

@ -59,7 +59,7 @@ fn write_msg(file: &mut BufWriter<File>, indent_string: &str, msg: &EuphMsg) ->
let time = msg.time.0.format(TIME_FORMAT); let time = msg.time.0.format(TIME_FORMAT);
writeln!(file, "{time} {indent_string}[{nick}] {line}")?; writeln!(file, "{time} {indent_string}[{nick}] {line}")?;
} else { } else {
writeln!(file, "{TIME_EMPTY} {indent_string} {nick_empty} {line}")?; writeln!(file, "{TIME_EMPTY} {indent_string}| {nick_empty} {line}")?;
} }
} }
@ -67,6 +67,6 @@ fn write_msg(file: &mut BufWriter<File>, indent_string: &str, msg: &EuphMsg) ->
} }
fn write_placeholder(file: &mut BufWriter<File>, indent_string: &str) -> anyhow::Result<()> { fn write_placeholder(file: &mut BufWriter<File>, indent_string: &str) -> anyhow::Result<()> {
writeln!(file, "{TIME_EMPTY} {indent_string}...")?; writeln!(file, "{TIME_EMPTY} {indent_string}[...]")?;
Ok(()) Ok(())
} }