use std::io::Write;
use clap::CommandFactory;
use crate::SkimOptions;
#[derive(Clone, clap::ValueEnum, PartialEq, Debug)]
pub enum Shell {
Bash,
Elvish,
Fish,
Nushell,
PowerShell,
Zsh,
}
pub fn generate_completions(sh: &Shell, output: &mut impl Write) {
use Shell::{Bash, Elvish, Fish, Nushell, PowerShell, Zsh};
let cmd = &mut SkimOptions::command();
let bin_name = "sk";
if *sh == Nushell {
clap_complete::generate(clap_complete_nushell::Nushell, cmd, bin_name, output);
} else {
let clap_shell: clap_complete::Shell = match sh {
Bash => clap_complete::Shell::Bash,
Elvish => clap_complete::Shell::Elvish,
Fish => clap_complete::Shell::Fish,
PowerShell => clap_complete::Shell::PowerShell,
Zsh => clap_complete::Shell::Zsh,
Nushell => unreachable!(),
};
clap_complete::generate(clap_shell, cmd, bin_name, output);
}
}
pub fn generate_key_bindings(sh: &Shell, output: &mut impl Write) -> std::io::Result<()> {
use Shell::{Bash, Fish, Zsh};
let binds_script = match sh {
Bash => include_str!("../shell/key-bindings.bash"),
Zsh => include_str!("../shell/key-bindings.zsh"),
Fish => include_str!("../shell/key-bindings.fish"),
_ => "",
};
if !binds_script.is_empty() {
output.write_all(binds_script.as_bytes())?;
}
Ok(())
}
#[cfg(test)]
#[path = "shell_tests.rs"]
mod tests;