eaf在Mac不可以全屏使用么?

最近装了eaf,发现在mac下全屏使用的话不能看到eaf的界面,是只有退出全屏这一个选择么,还是有别的解决方案。

1 个赞

有bug…可以最大化使用,不能全屏。

应该可以,首先解决 emacs 本身全屏的问题,然后再用 eaf, 可能就是坐标不对,有几个 advice。 因为没特别严格的测试,所以也没提 pr。

(defun my-eaf-mac-get-size-advice (orig-fn &rest args)
    (if (memq (frame-parameter (car args) 'fullscreen)
              '(fullscreen fullboth maximized))
        0
      (apply orig-fn args)))

  (advice-add 'eaf--frame-top :around #'my-eaf-mac-get-size-advice)
  (advice-add 'eaf--frame-left :around #'my-eaf-mac-get-size-advice)
  (advice-add 'eaf--frame-internal-height :around #'my-eaf-mac-get-size-advice)
1 个赞

之前折腾过。。。现在己经放弃治疗了。

我试了一下还是不太行