From 3cec10e1b1cd5938d59b1107e9435e60e1e52414 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sat, 17 Sep 2022 16:19:36 +0200 Subject: [PATCH] Fix missing error variant --- helix-lsp/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index aec6b3e6..b5f5eace 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -38,6 +38,8 @@ pub enum Error { Timeout, #[error("server closed the stream")] StreamClosed, + #[error("LPS not defined")] + LspNotDefined, #[error("Unhandled")] Unhandled, #[error(transparent)]