-
Notifications
You must be signed in to change notification settings - Fork 0
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
Scheme setting does not apply to shellcheck linting #66
Comments
Hello, If I paste the following text to a buffer and not save a file: #! /bin/bash
echo -n "Enter a number: "
read -r NUM
if [[ $NUM -gt 10 ]]
echo "The variable is greater than 10."
else
echo "The variable is equal or less than 10."
fi I will get the following logs:
It looks like there are two issues:
both of those issues are server issues, Feel free to open the issues at that repo. |
When running shellcheck linting, I'm seeing the following error in the lsp log panel:
where the url is
buffer://sublime/x
. It looks like onlyfile
is supported as a scheme here. Saving as a file fixes this.The text was updated successfully, but these errors were encountered: