Andrey Listopadov
Andrey Listopadov
https://github.com/casouri/eldoc-box/issues/21#issuecomment-537955462 Ah, finally figured out how to reproduce this issue: Here I change the size of treemacs buffer. If you toggle these two images you'll notice that `eldoc-box` position is...
Can be reproduced without any configuration in `emacs -q` after evaluating ```emacs-lisp (progn (package-initialize) (require 'eldoc-box) (require 'eglot) (require 'company)) ``` Enabling `eglot`, `company-mode`, `eldoc-box-hover-at-point-mode` and `display-line-numbers-mode` produces this result:...
@casouri I can't check, since I'm also experiencing this issue #24
Changing code like this: ```diff - (let* ((pos (pos (posn-at-point point window))) + (let* ((pos (posn-at-point point window)) (x-y (posn-x-y pos)) (window (posn-window pos)) (edges (window-body-pixel-edges window))) ``` makes it...
Yet it seems that this positioning problem is shared among other plugins like company-box. So this may be GNOME Shell related. Although old code doesn't seem to have that problem.
It seems that the problem with the leftmost windows is fixed as well I just mean that instead of displaying under the cursor, box is displayed over the current line...
Tool bar mode doesn't affect position in my case. Both on and off the position is the same for any box
Found it. `global-tab-line-mode` is the root of the issue. It's the same as `header-line` but uses additional `tab-line` area added in Emacs 27
> I think I got it for the most part. `gloabl-tab-bar-line` doesn't create problem now at least. The positions in a window/frame in Emacs is such a mess... You can...
Yes, this package uses childframes, which are GUI feature only.