diff options
Diffstat (limited to 'helix-lsp/src/transport.rs')
-rw-r--r-- | helix-lsp/src/transport.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-lsp/src/transport.rs b/helix-lsp/src/transport.rs index c69c1ccf..876de929 100644 --- a/helix-lsp/src/transport.rs +++ b/helix-lsp/src/transport.rs @@ -31,6 +31,7 @@ enum ServerMessage { Call(jsonrpc::Call), } +#[cfg_attr(feature = "debug", derive(Debug))] pub struct Transport { client_tx: UnboundedSender<jsonrpc::Call>, client_rx: UnboundedReceiver<Payload>, |