Issues running EAF for Mac
I am trying to get EAF to work on macos and I followed all the installation instructions from here.
It seems that there is support for macos now for EAF but I still get trouble when running the eaf-open-browser
command. The following appears in my message buffer:
[EAF/browser] Opening http://google
[EAF] Killed 1 EAF buffer!
[EAF] Process terminated.
Quit
[EAF] Killed 1 EAF buffer!
[EAF] Process terminated.
deferred error : (error "Process EAF EPC Server 2 <127.0.0.1:58793> not running: connection broken by remote peer")
[EAF] Killed 1 EAF buffer!
[EAF] Process terminated.
Essentially, I run the command and it just shows me a blank buffer and in the minibuffer it says buffer id '342c-25a5-d5fe-4f01-b2d6-f25d-2e80' does not exists
. Has anyone been able to get EAF to work properly on a mac?
The following is the config I have in my init.el file:
(use-package eaf
:load-path "~/.emacs.d/site-lisp/emacs-application-framework"
:custom
; See https://github.com/emacs-eaf/emacs-application-framework/wiki/Customization
(eaf-browser-continue-where-left-off t)
(eaf-browser-enable-adblocker t)
(browse-url-browser-function 'eaf-open-browser)
:config
(defalias 'browse-web #'eaf-open-browser)) ;; unbind, see more in the Wiki
(require 'eaf-browser)
(require 'eaf-pdf-viewer)