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
[\!\@]
<form> expected, got '\!\@'
Describe the bug
When I write in a *.clj file:
*.clj
Clojure LSP IntelliJ marks \!\@ as an error: <form> expected, got '\!\@'
\!\@
This appears to be independent of the actual values (\! and \@ in this case; e.g. \a\b or \.\: behaves the same way).
\!
\@
\a\b
\.\:
The vector [] is not necessary either. Given a file containing:
[]
Clojure LSP IntellJ will mark \a\b as an error: '\a\b' unexpected
'\a\b' unexpected
Expected behavior
\a\b is valid syntax. [\a\b] is a vector containing char values \a and \b.
[\a\b]
\a
\b
User details
Originally reported as clojure-lsp/clojure-lsp#1816.
The text was updated successfully, but these errors were encountered:
That's a bug on our Language grammar parser, but I don't know exactly how to solve it, help welcome for this one
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When I write in a
*.clj
file:Clojure LSP IntelliJ marks
\!\@
as an error:<form> expected, got '\!\@'
This appears to be independent of the actual values (
\!
and\@
in this case; e.g.\a\b
or\.\:
behaves the same way).The vector
[]
is not necessary either. Given a file containing:Clojure LSP IntellJ will mark
\a\b
as an error:'\a\b' unexpected
Expected behavior
\a\b
is valid syntax.[\a\b]
is a vector containing char values\a
and\b
.User details
Originally reported as clojure-lsp/clojure-lsp#1816.
The text was updated successfully, but these errors were encountered: