Skip to content

Commit 3b7768a

Browse files
authored
Revert, don't hide frame in post command (#636)
* Revert, don't hide frame in post command * Just to lines * Add dep
1 parent e48e330 commit 3b7768a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lsp-ui-doc.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -897,8 +897,6 @@ HEIGHT is the documentation number of lines."
897897

898898
(defun lsp-ui-doc--post-command ()
899899
"Post command hook for UI doc."
900-
(unless (memq this-command lsp-ui-doc--ignore-commands)
901-
(lsp-ui-doc--hide-frame))
902900
(lsp-ui-util-safe-kill-timer lsp-ui-doc--post-timer)
903901
(setq lsp-ui-doc--post-timer (run-with-timer lsp-ui-doc-post-delay nil #'lsp-ui-doc--make-request)))
904902

lsp-ui-util.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232

3333
;;; Code:
3434

35+
(require 'face-remap)
36+
3537
(defun lsp-ui-util-safe-kill-timer (timer)
3638
"Safely kill the TIMER."
3739
(when (timerp timer) (cancel-timer timer)))

0 commit comments

Comments
 (0)