2021-10-02 13:10:28 +00:00
|
|
|
use {
|
|
|
|
reedline::{
|
|
|
|
Prompt, PromptEditMode, PromptHistorySearch, PromptHistorySearchStatus, PromptViMode,
|
|
|
|
},
|
|
|
|
std::borrow::Cow,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Nushell prompt definition
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct NushellPrompt {
|
|
|
|
prompt_string: String,
|
|
|
|
default_prompt_indicator: String,
|
|
|
|
default_vi_insert_prompt_indicator: String,
|
|
|
|
default_vi_visual_prompt_indicator: String,
|
|
|
|
default_multiline_indicator: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for NushellPrompt {
|
|
|
|
fn default() -> Self {
|
|
|
|
NushellPrompt::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NushellPrompt {
|
|
|
|
pub fn new() -> NushellPrompt {
|
|
|
|
NushellPrompt {
|
|
|
|
prompt_string: "".to_string(),
|
|
|
|
default_prompt_indicator: "〉".to_string(),
|
|
|
|
default_vi_insert_prompt_indicator: ": ".to_string(),
|
|
|
|
default_vi_visual_prompt_indicator: "v ".to_string(),
|
|
|
|
default_multiline_indicator: "::: ".to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-17 01:04:54 +00:00
|
|
|
pub fn update_prompt(&mut self, prompt_string: String) {
|
2021-10-02 13:10:28 +00:00
|
|
|
self.prompt_string = prompt_string;
|
|
|
|
}
|
|
|
|
|
2022-01-01 22:53:16 +00:00
|
|
|
pub fn update_prompt_indicator(&mut self, prompt_indicator_string: String) {
|
|
|
|
self.default_prompt_indicator = prompt_indicator_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_prompt_vi_insert(&mut self, prompt_vi_insert_string: String) {
|
|
|
|
self.default_vi_insert_prompt_indicator = prompt_vi_insert_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_prompt_vi_visual(&mut self, prompt_vi_visual_string: String) {
|
|
|
|
self.default_vi_visual_prompt_indicator = prompt_vi_visual_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_prompt_multiline(&mut self, prompt_multiline_indicator_string: String) {
|
|
|
|
self.default_multiline_indicator = prompt_multiline_indicator_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_all_prompt_strings(
|
|
|
|
&mut self,
|
|
|
|
prompt_string: String,
|
|
|
|
prompt_indicator_string: String,
|
|
|
|
prompt_vi_insert_string: String,
|
|
|
|
prompt_vi_visual_string: String,
|
|
|
|
prompt_multiline_indicator_string: String,
|
|
|
|
) {
|
|
|
|
self.prompt_string = prompt_string;
|
|
|
|
self.default_prompt_indicator = prompt_indicator_string;
|
|
|
|
self.default_vi_insert_prompt_indicator = prompt_vi_insert_string;
|
|
|
|
self.default_vi_visual_prompt_indicator = prompt_vi_visual_string;
|
|
|
|
self.default_multiline_indicator = prompt_multiline_indicator_string;
|
|
|
|
}
|
|
|
|
|
2021-10-02 13:10:28 +00:00
|
|
|
fn default_wrapped_custom_string(&self, str: String) -> String {
|
|
|
|
format!("({})", str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Prompt for NushellPrompt {
|
|
|
|
fn render_prompt(&self, _: usize) -> Cow<str> {
|
|
|
|
self.prompt_string.as_str().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn render_prompt_indicator(&self, edit_mode: PromptEditMode) -> Cow<str> {
|
|
|
|
match edit_mode {
|
|
|
|
PromptEditMode::Default => self.default_prompt_indicator.as_str().into(),
|
|
|
|
PromptEditMode::Emacs => self.default_prompt_indicator.as_str().into(),
|
|
|
|
PromptEditMode::Vi(vi_mode) => match vi_mode {
|
|
|
|
PromptViMode::Normal => self.default_prompt_indicator.as_str().into(),
|
|
|
|
PromptViMode::Insert => self.default_vi_insert_prompt_indicator.as_str().into(),
|
|
|
|
PromptViMode::Visual => self.default_vi_visual_prompt_indicator.as_str().into(),
|
|
|
|
},
|
|
|
|
PromptEditMode::Custom(str) => self.default_wrapped_custom_string(str).into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn render_prompt_multiline_indicator(&self) -> Cow<str> {
|
|
|
|
Cow::Borrowed(self.default_multiline_indicator.as_str())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn render_prompt_history_search_indicator(
|
|
|
|
&self,
|
|
|
|
history_search: PromptHistorySearch,
|
|
|
|
) -> Cow<str> {
|
|
|
|
let prefix = match history_search.status {
|
|
|
|
PromptHistorySearchStatus::Passing => "",
|
|
|
|
PromptHistorySearchStatus::Failing => "failing ",
|
|
|
|
};
|
|
|
|
|
|
|
|
Cow::Owned(format!(
|
|
|
|
"({}reverse-search: {})",
|
|
|
|
prefix, history_search.term
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|