Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/handlers.rs')
| -rw-r--r-- | helix-view/src/handlers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/handlers.rs b/helix-view/src/handlers.rs index 258ed89e..6c4c30fe 100644 --- a/helix-view/src/handlers.rs +++ b/helix-view/src/handlers.rs @@ -20,6 +20,7 @@ pub struct Handlers { // only public because most of the actual implementation is in helix-term right now :/ pub completions: CompletionHandler, pub signature_hints: Sender<lsp::SignatureHelpEvent>, + pub inlay_hints: Sender<lsp::InlayHintEvent>, pub auto_save: Sender<AutoSaveEvent>, pub document_colors: Sender<lsp::DocumentColorsEvent>, } |