diff options
author | Blaž Hrastnik | 2022-10-16 14:39:58 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-10-19 02:31:39 +0000 |
commit | 55b50d9e8368793d764d36c0f363f31252900b87 (patch) | |
tree | 98dc9c4c5fc89a5c8ead2f60ec585d43cd9e64d1 | |
parent | b155e861adea1a29c5e4f9e717df8ff85a36052d (diff) |
Seems like this flush is unnecessary
-rw-r--r-- | helix-term/src/application.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 719683bf..2e49e6d1 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -968,9 +968,6 @@ impl Application { // errors along the way let mut errs = Vec::new(); - // TODO: deduplicate with ctx.block_try_flush_writes - tokio::task::block_in_place(|| helix_lsp::block_on(self.editor.flush_writes())); - if let Err(err) = self .jobs .finish(&mut self.editor, Some(&mut self.compositor)) |