Show full, absolute paths when displaying a local worktree

This commit is contained in:
Mikayla Maki 2022-10-17 13:35:45 -07:00
parent 354fefe61b
commit 1f161b9aa1
4 changed files with 25 additions and 4 deletions

View file

@ -92,6 +92,9 @@ impl LineEnding {
}
}
}
pub struct HomeDir(pub PathBuf);
#[async_trait::async_trait]
pub trait Fs: Send + Sync {
async fn create_dir(&self, path: &Path) -> Result<()>;