Yuan Fu

Results 126 comments of Yuan Fu

Yes, that's what I'm trying to solve. That happens when I endable `tool-bar-mode`. You enabled `tool-bar-mode`, no?

I see, let me try to figure out how to get the height of the tab-line.

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...

BTW, could you check if the childframe is off by 1 pixel? I observed it on my machine: Well maybe that's not exactly 1 pixel, but you know what I...

There isn't a easy way, you can try `eldoc-box-eglot-help-at-point` which pops up a regular buffer.

Hmmm, what would be the ideal behavior for this?

eldoc-box can look at the visible frames before it displays its childframe and make sure its childframe doesn't cover other's. I need to come up with a good algorithm to...

Generally you want to size and move the child frame _before_ making it visible. But yeah, it would be nice to have a function, given desired position an geometry (and...

Have you tried `eldoc-box-max-pixel-width`?

Ah, I see. I would try ``` (add-hook 'eldoc-box-buffer-hook (lambda () (unless word-wrap (toggle-word-wrap))) nil t) ```