Skip to content

Commit 99a9e9f

Browse files
committed
Fix brace matcher
1 parent f04e4df commit 99a9e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/com/github/clojure_lsp/intellij/extension/brace_matcher.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
(defn -isPairedBracesAllowedBeforeType
1616
[_ _ ^IElementType context-type]
17-
(not context-type))
17+
(boolean context-type))
1818

1919
(defn -getCodeConstructStart [_ _psi-file opening-brace-offset]
2020
opening-brace-offset)

0 commit comments

Comments
 (0)