Add better error message for file save failure due to parent not existing (#7014)

Fixes #5229
pull/16/head
John Kelly 1 year ago committed by GitHub
parent 92c328c088
commit 87da58578f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -808,7 +808,7 @@ impl Document {
if force {
std::fs::DirBuilder::new().recursive(true).create(parent)?;
} else {
bail!("can't save file, parent directory does not exist");
bail!("can't save file, parent directory does not exist (use :w! to create it)");
}
}
}

Loading…
Cancel
Save