1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-11 12:52:20 +00:00

Cleanup around newline

This commit is contained in:
Matan Kushner 2019-04-12 13:17:20 -04:00
parent 653b9c1d5c
commit 7356faaec2
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

View File

@ -15,7 +15,7 @@ pub fn prompt(args: ArgMatches) {
let mut handle = stdout.lock();
// Write a new line before the prompt
write!(handle, "{}", "\n").unwrap();
writeln!(handle).unwrap();
default_prompt
.into_iter()