summaryrefslogtreecommitdiffstats
path: root/src/init/mod.rs
diff options
context:
space:
mode:
authorBuggStream <buggstream@tuta.io>2019-12-11 21:31:30 +0100
committerMatan Kushner <hello@matchai.me>2019-12-11 15:31:30 -0500
commit93701b26b38b5f9102f150be5344f2e93170d25f (patch)
tree4176798865d41aa55369b53e301d8be1ba697472 /src/init/mod.rs
parent835ecc3ae6c5d01c6e04d1cc77179e0529e697fc (diff)
feat: Add support for the ion shell (#704)
Diffstat (limited to 'src/init/mod.rs')
-rw-r--r--src/init/mod.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/init/mod.rs b/src/init/mod.rs
index 73f91a832..0e826b5d2 100644
--- a/src/init/mod.rs
+++ b/src/init/mod.rs
@@ -109,6 +109,10 @@ fi"#,
);
Some(script)
}
+ Some("ion") => {
+ let script = format!("eval $({} init ion --print-full-init)", starship);
+ Some(script)
+ }
None => {
println!(
"Invalid shell name provided: {}\\n\
@@ -122,7 +126,7 @@ fi"#,
Some(shell_basename) => {
println!(
"printf \"\\n{0} is not yet supported by starship.\\n\
- For the time being, we support bash, zsh, and fish.\\n\
+ For the time being, we support bash, zsh, fish, and ion.\\n\
Please open an issue in the starship repo if you would like to \
see support for {0}:\\nhttps://github.com/starship/starship/issues/new\"\\n\\n",
shell_basename
@@ -146,6 +150,7 @@ pub fn init_main(shell_name: &str) -> io::Result<()> {
"zsh" => Some(ZSH_INIT),
"fish" => Some(FISH_INIT),
"powershell" => Some(PWSH_INIT),
+ "ion" => Some(ION_INIT),
_ => {
println!(
"printf \"Shell name detection failed on phase two init.\\n\
@@ -186,3 +191,5 @@ const ZSH_INIT: &str = include_str!("starship.zsh");
const FISH_INIT: &str = include_str!("starship.fish");
const PWSH_INIT: &str = include_str!("starship.ps1");
+
+const ION_INIT: &str = include_str!("starship.ion");