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
I saw that the command to terminate the server is :terminate but this is not a valid command.
:terminate
function isvalidcmd(cmd) isempty(cmd) && return false Base.is_id_start_char(cmd[1]) || return false for c in cmd Base.is_id_char(c) || return false end true end
because this function returns false
Base.is_id_start_char(':')
is there another way?
The text was updated successfully, but these errors were encountered:
Thanks @guilhermebodin for reporting. This should be fixed with #75. A new version v0.6.1 is tagged as well.
Sorry, something went wrong.
tanmaykm
Successfully merging a pull request may close this issue.
I saw that the command to terminate the server is
:terminate
but this is not a valid command.because this function returns false
is there another way?
The text was updated successfully, but these errors were encountered: