mirror of https://github.com/helix-editor/helix
fix: wq/wqa functions need to wait for save to finish before closing
parent
f33aaba53f
commit
e819121f6e
|
@ -958,7 +958,7 @@ mod cmd {
|
|||
if autofmt {
|
||||
doc.format(view.id); // TODO: merge into save
|
||||
}
|
||||
tokio::spawn(doc.save());
|
||||
helix_lsp::block_on(doc.save());
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
@ -1051,7 +1051,7 @@ mod cmd {
|
|||
errors.push_str("cannot write a buffer without a filename\n");
|
||||
continue;
|
||||
}
|
||||
tokio::spawn(doc.save());
|
||||
helix_lsp::block_on(doc.save());
|
||||
}
|
||||
editor.set_error(errors);
|
||||
|
||||
|
|
Loading…
Reference in New Issue