mirror of
https://github.com/nushell/nushell
synced 2024-12-28 05:53:09 +00:00
removed comments
This commit is contained in:
parent
03339beae1
commit
6f4df31927
1 changed files with 1 additions and 2 deletions
|
@ -10,7 +10,7 @@ use {
|
||||||
pub struct NushellPrompt {
|
pub struct NushellPrompt {
|
||||||
prompt_command: String,
|
prompt_command: String,
|
||||||
prompt_string: String,
|
prompt_string: String,
|
||||||
// These are part of the struct definition in case we want to later allow
|
// These are part of the struct definition in case we want to allow
|
||||||
// further customization to the shell status
|
// further customization to the shell status
|
||||||
default_prompt_indicator: String,
|
default_prompt_indicator: String,
|
||||||
default_vi_insert_prompt_indicator: String,
|
default_vi_insert_prompt_indicator: String,
|
||||||
|
@ -25,7 +25,6 @@ impl Default for NushellPrompt {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl NushellPrompt {
|
impl NushellPrompt {
|
||||||
/// Constructor for the default prompt, which takes the amount of spaces required between the left and right-hand sides of the prompt
|
|
||||||
pub fn new() -> NushellPrompt {
|
pub fn new() -> NushellPrompt {
|
||||||
NushellPrompt {
|
NushellPrompt {
|
||||||
prompt_command: "".to_string(),
|
prompt_command: "".to_string(),
|
||||||
|
|
Loading…
Reference in a new issue