diff options
author | Blaž Hrastnik | 2021-03-26 07:02:13 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-26 08:12:45 +0000 |
commit | 2a3910c1d9f2b05fe5bc0610e6a83e6dabe13b71 (patch) | |
tree | 5e2c94eec0c168d14b1478a07110230b3be1c7fe /helix-lsp/src/lib.rs | |
parent | ad3325db8e6dce3a10b9f8e0319ab9814c7ade1b (diff) |
wip: Async async. Delay response handling with a callback.
Diffstat (limited to 'helix-lsp/src/lib.rs')
-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 e7fe816a..89054345 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -8,6 +8,8 @@ pub use lsp_types as lsp; pub use client::Client; pub use lsp::{Position, Url}; +pub type Result<T> = core::result::Result<T, Error>; + use helix_core::syntax::LanguageConfiguration; use thiserror::Error; |