diff options
Diffstat (limited to 'tool/src')
-rw-r--r-- | tool/src/add.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/src/add.rs b/tool/src/add.rs index 279574f..3cf13fd 100644 --- a/tool/src/add.rs +++ b/tool/src/add.rs @@ -63,6 +63,7 @@ pub(crate) async fn add(action: Action) -> anyhow::Result<()> { let target_dir_index = FuzzySelect::with_theme(&theme) .items(&directories) .default(default) + .with_prompt("Library Path") .interact() .unwrap(); directories[target_dir_index].0.clone() @@ -138,6 +139,7 @@ pub(crate) async fn add(action: Action) -> anyhow::Result<()> { if Confirm::with_theme(&theme) .with_prompt(format!("Write {:?}?", ypath)) + .default(true) .interact() .unwrap() { |