Add fish_prompt

This commit is contained in:
Matan Kushner
2019-04-13 00:33:50 -04:00
parent 240fb6a02c
commit 4ce4899f81
4 changed files with 28 additions and 3 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ use clap::{App, Arg};
fn main() {
let args = App::new("Starship")
.about("The cross-platform prompt for astronauts. ✨🚀")
.about("The cross-shell prompt for astronauts. ✨🚀")
// pull the version number from Cargo.toml
.version(crate_version!())
// pull the authors from Cargo.toml
+1 -1
View File
@@ -42,7 +42,7 @@ impl Segment {
}
/// Sets the style of the segment
///
///
/// Accepts either `Color` or `Style`.
pub fn set_style<T>(&mut self, style: T) -> &mut Segment
where