We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It might be useful to add the following to the documentation, when using js-comint on Windows.
js-comint
This disables nodes own readline:
(setenv "NODE_NO_READLINE" "1")
See the discussion on Stackoverflow
And this sets the executable. Otherwise js-comint will search just for node without the .exe extension.
node
.exe
(setq inferior-js-program-command "C:/Program Files/nodejs/node.exe")
The text was updated successfully, but these errors were encountered:
Thanks. I will update the documentation.
Sorry, something went wrong.
As I checked. js-comint runs (setenv "NODE_NO_READLINE" "1") automatically when starting repl.
83e932e doc and bugs (Chen Bin)
No branches or pull requests
It might be useful to add the following to the documentation, when using
js-comint
on Windows.This disables nodes own readline:
See the discussion on Stackoverflow
And this sets the executable. Otherwise
js-comint
will search just fornode
without the.exe
extension.The text was updated successfully, but these errors were encountered: