Skip to content

Commit 9fff7e6

Browse files
committed
Fix comment form complain about missing paren
1 parent bb8f946 commit 9fff7e6

File tree

3 files changed

+97
-96
lines changed

3 files changed

+97
-96
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- Fix comment form complain about missing paren.
6+
57
## 3.0.2
68

79
- Fix Settings page exception when more than a project was opened and closed.

src/gen/com/github/clojure_lsp/intellij/language/parser/_ClojureLexer.java

Lines changed: 94 additions & 95 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/gramar/_ClojureLexer.flex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import static com.github.clojure_lsp.intellij.ClojureTokens.FORM_COMMENT;
3232

3333
WHITE_SPACE=\s+
3434
LINE_COMMENT=;.*
35-
FORM_COMMENT=#_\S*
35+
FORM_COMMENT=#_
3636
STR_CHAR=[^\\\"]|\\.|\\\"
3737
STRING=\" {STR_CHAR}* \"
3838
// octal numbers: 023, 023N, but not 023M

0 commit comments

Comments
 (0)