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
Codium (VS Code)
Linux/Ubuntu
4.4.0
Code example:
value=array[i - 2]
This is flagged as a syntax error:
Syntax error: "]" missing
Changing the code as follows gets rid of the error:
value=array[i-2]
With this modified code, AFAICT, shell-format (shfmt) inserts the spaces around the minus. It is not a syntax error to have those spaces.
Always.
This should not be flagged as a syntax error.
No response
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. This should be fixed in the latest language server 4.6.2 and in the vscode extension 1.33.
Do let us know if you have other issues or ideas for future improvements. :)
Sorry, something went wrong.
No branches or pull requests
Code editor
Codium (VS Code)
Platform
Linux/Ubuntu
Version
4.4.0
What steps will reproduce the bug?
Code example:
This is flagged as a syntax error:
Changing the code as follows gets rid of the error:
With this modified code, AFAICT, shell-format (shfmt) inserts the spaces around the minus. It is not a syntax error to have those spaces.
How often does it reproduce? Is there a required condition?
Always.
What is the expected behavior?
This should not be flagged as a syntax error.
What do you see instead?
Additional information
No response
The text was updated successfully, but these errors were encountered: