We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786290f commit f9ff951Copy full SHA for f9ff951
lsp-ui-doc.el
@@ -607,5 +607,15 @@ HOVER is the returned signature information."
607
It is supposed to be called from `lsp-ui--toggle'"
608
(lsp-ui-doc-mode (if enable 1 -1)))
609
610
+(defun lsp-ui-doc-show ()
611
+ "Trigger display hover information popup."
612
+ (interactive)
613
+ (lsp-ui-doc--on-hover (lsp-request "textDocument/hover" (lsp--text-document-position-params))))
614
+
615
+(defun lsp-ui-doc-hide ()
616
+ "Hide hover information popup."
617
618
+ (lsp-ui-doc--hide-frame))
619
620
(provide 'lsp-ui-doc)
621
;;; lsp-ui-doc.el ends here
0 commit comments