mirror of https://github.com/helix-editor/helix
Add a TODO
parent
14f511da93
commit
de946d2357
|
@ -198,6 +198,7 @@ impl Document {
|
||||||
async move {
|
async move {
|
||||||
use tokio::{fs::File, io::AsyncWriteExt};
|
use tokio::{fs::File, io::AsyncWriteExt};
|
||||||
if let Some(parent) = path.parent() {
|
if let Some(parent) = path.parent() {
|
||||||
|
// TODO: display a prompt asking the user if the directories should be created
|
||||||
if !parent.exists() {
|
if !parent.exists() {
|
||||||
return Err(Error::msg(
|
return Err(Error::msg(
|
||||||
"can't save file, parent directory does not exist",
|
"can't save file, parent directory does not exist",
|
||||||
|
|
Loading…
Reference in New Issue