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 e48e330 commit 3b7768aCopy full SHA for 3b7768a
lsp-ui-doc.el
@@ -897,8 +897,6 @@ HEIGHT is the documentation number of lines."
897
898
(defun lsp-ui-doc--post-command ()
899
"Post command hook for UI doc."
900
- (unless (memq this-command lsp-ui-doc--ignore-commands)
901
- (lsp-ui-doc--hide-frame))
902
(lsp-ui-util-safe-kill-timer lsp-ui-doc--post-timer)
903
(setq lsp-ui-doc--post-timer (run-with-timer lsp-ui-doc-post-delay nil #'lsp-ui-doc--make-request)))
904
lsp-ui-util.el
@@ -32,6 +32,8 @@
32
33
;;; Code:
34
35
+(require 'face-remap)
36
+
37
(defun lsp-ui-util-safe-kill-timer (timer)
38
"Safely kill the TIMER."
39
(when (timerp timer) (cancel-timer timer)))
0 commit comments