mirror of https://github.com/helix-editor/helix
Update helix-term/src/commands.rs
Co-authored-by: Ivan Tham <pickfire@riseup.net>pull/345/head
parent
7ae21b98ce
commit
15ae2e7ef1
|
@ -1222,15 +1222,14 @@ mod cmd {
|
||||||
Ok(handle) => {
|
Ok(handle) => {
|
||||||
if let Err(e) = helix_lsp::block_on(handle) {
|
if let Err(e) = helix_lsp::block_on(handle) {
|
||||||
cx.editor.set_error(e.to_string());
|
cx.editor.set_error(e.to_string());
|
||||||
return;
|
} else {
|
||||||
|
force_quit(cx, &[], event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
cx.editor.set_error(e.to_string());
|
cx.editor.set_error(e.to_string());
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
force_quit(cx, &[], event);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns `true` if there are modified buffers remaining and sets editor error,
|
/// Returns `true` if there are modified buffers remaining and sets editor error,
|
||||||
|
|
Loading…
Reference in New Issue