diff --git a/crates/ui/src/input/lsp/hover.rs b/crates/ui/src/input/lsp/hover.rs index 37d81f2e..992f8210 100644 --- a/crates/ui/src/input/lsp/hover.rs +++ b/crates/ui/src/input/lsp/hover.rs @@ -28,6 +28,10 @@ impl InputState { window: &mut Window, cx: &mut Context, ) { + if self.selecting { + return; + } + let Some(provider) = self.lsp.hover_provider.clone() else { return; };