Skip to content

Commit 3f88375

Browse files
committed
Should use echo instead of echomsg in hover.
1 parent 640a74c commit 3f88375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/languageclient.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ impl ILanguageClient for Arc<Mutex<State>> {
15621562
let hover: Hover = serde_json::from_value(result.clone())?;
15631563

15641564
let message = hover.to_string();
1565-
self.echomsg(&message)?;
1565+
self.echo(&message)?;
15661566

15671567
info!("End {}", REQUEST__Hover);
15681568
Ok(result)

0 commit comments

Comments
 (0)