-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add longer startup timeout #103
base: master
Are you sure you want to change the base?
Conversation
Since this isn't in the Master copy yet: can the fix be added to a MELPA download without causing undue difficulties, i.e. with updating hy-mode in the future? I've only recently started studying LISP, and being a perfectionist downloaded Emacs (and with it hy-mode and paradox-mode, among other packages) for that purpose, so I'm not fully aware of how Emacs interacts with packages. |
@swapneils emacs package management is pretty painless IME. You could, for example, check out this branch (or the main branch on my fork) into |
This needs to be rebased. |
1752ac9
to
4eb60c9
Compare
me dumb, copied wrong. Didn't seem to fix it, may be another issue I've been having running hy on git bash. |
On windows, if you run |
I believe this fixes #85. I was getting the error
when running the tests, and when starting the first hy buffer of an emacs session (hy process starting up for jedhy). It may have been occurring at other times, but I did not note the exact circumstances. The was caused by
accept-process-output
timing out before the hy REPL writes its banner text ("hy 0.20.0 ..."). I've added a variable (hy-shell--startup-timeout
) with a default of 3 seconds, and this seems to fix it for me.