stsquad / emacs_chrome

A Chromium/Firefox "clone" of It's All Text for spawning an editor to edit text areas in browsers. Based on David Hilley's original Chromium extension.
https://chrome.google.com/extensions/detail/ljobjlafonikaiipfkggjbhkghgicgoh
GNU General Public License v3.0
514 stars 91 forks source link

Failed to start an edit-server #157

Open aankittcoolest opened 5 years ago

aankittcoolest commented 5 years ago

Cannot start the edit-server on mac. Any idea/help on debugging it is appreciated.

Here is what I have in my .emacs file.

    (when (require 'edit-server nil t)
      (setq edit-server-new-frame nil)
      (edit-server-start))
stsquad commented 5 years ago

How have you installed edit-server.el? Is it in your path? If so some basic debugging. Does it M-x list-processes show it running? If so try M-x edit-server-stop and C-u M-x edit-server-start and see if the log shows anything.

aankittcoolest commented 5 years ago

Yeah. I do have edit-server.el file in my path. Here is what my messages buffer logs looks like.

screen shot 2018-12-28 at 14 06 51
stsquad commented 5 years ago

Sadly I don't think emacs will give much more information but one thing to check is if there is already something listening on that port. I use "netstat -lptn" on linux.