* eldoc-box.el (eldoc-box--display): Workaround (issue#66).
This commit is contained in:
parent
c805bfcd61
commit
d1b8cb5066
@ -280,6 +280,9 @@ STR has to be a proper documentation, not empty string, not nil, etc."
|
|||||||
(let ((doc-buffer (get-buffer-create eldoc-box--buffer)))
|
(let ((doc-buffer (get-buffer-create eldoc-box--buffer)))
|
||||||
(with-current-buffer doc-buffer
|
(with-current-buffer doc-buffer
|
||||||
(setq mode-line-format nil)
|
(setq mode-line-format nil)
|
||||||
|
;; WORKAROUND: (issue#66) If cursor-type is ‘box’, sometimes the
|
||||||
|
;; cursor is still shown for some reason.
|
||||||
|
(setq-local cursor-type t)
|
||||||
(when (bound-and-true-p global-tab-line-mode)
|
(when (bound-and-true-p global-tab-line-mode)
|
||||||
(setq tab-line-format nil))
|
(setq tab-line-format nil))
|
||||||
;; without this, clicking childframe will make doc buffer the current buffer
|
;; without this, clicking childframe will make doc buffer the current buffer
|
||||||
|
Loading…
Reference in New Issue
Block a user