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
Just notices that exit command was not defined when using terminal::push()
terminal::push()
this is the code responsible for setting exit:
exit: !!(options && options.login || !options)
exit should always be defined for nested interpreters unless exit is explicitly set to false.
exit
false
We can also add exit option to push().
push()
The text was updated successfully, but these errors were encountered:
Maybe it will be good idea to keep top level exit only when login is used. But for nested interpreters it should be defined.
Maybe even remove this error message
canExitError: "You can't exit from main interpreter",
Sorry, something went wrong.
No branches or pull requests
I have an idea for a new feature for jQuery Terminal
Just notices that exit command was not defined when using
terminal::push()
this is the code responsible for setting exit:
exit
should always be defined for nested interpreters unless exit is explicitly set tofalse
.We can also add
exit
option topush()
.The text was updated successfully, but these errors were encountered: