diff options
author | Blaž Hrastnik | 2021-05-12 08:24:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-12 08:24:55 +0000 |
commit | e4ff75b4d4eb793004e91279c82fde7766fc5a00 (patch) | |
tree | f9adbf7d37b194982e57fd7db5f8a63ef4e1ccc3 /helix-lsp | |
parent | 4eabb8d05462aebae11a09f17380c9774bccbeb0 (diff) |
Add :fmt (formats the whole file).
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index 1dbd6529..0a83c93a 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -20,6 +20,8 @@ use serde::{Deserialize, Serialize}; use tokio_stream::wrappers::UnboundedReceiverStream; +pub use futures_executor::block_on; + #[derive(Error, Debug)] pub enum Error { #[error("protocol error: {0}")] |