1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-16 01:57:07 +00:00

fix: Move the battery to the newline before character (#139)

This commit is contained in:
Matan Kushner 2019-08-12 00:46:12 -04:00 committed by Kevin Song
parent 3669e389b6
commit 4c2e9c3304

View File

@ -8,7 +8,6 @@ use crate::module::Module;
use crate::modules; use crate::modules;
const PROMPT_ORDER: &[&str] = &[ const PROMPT_ORDER: &[&str] = &[
"battery",
"username", "username",
"directory", "directory",
"git_branch", "git_branch",
@ -20,6 +19,7 @@ const PROMPT_ORDER: &[&str] = &[
"go", "go",
"cmd_duration", "cmd_duration",
"line_break", "line_break",
"battery",
"character", "character",
]; ];