diff options
author | Michael Davis | 2022-10-04 01:41:31 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-03-08 01:48:35 +0000 |
commit | 9c12e0fb765f065b43788da670ffb98159d64a5f (patch) | |
tree | 7117f34d37f134526725af017b2ca046fd3d7c16 /helix-lsp/src/lib.rs | |
parent | c8e6857affdd286a5aff1e8f72fc428ea216076e (diff) |
Add parser for LSP snippet
Diffstat (limited to 'helix-lsp/src/lib.rs')
-rw-r--r-- | helix-lsp/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index ca9d17ac..cce848ab 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -1,5 +1,6 @@ mod client; pub mod jsonrpc; +pub mod snippet; mod transport; pub use client::Client; |