You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add missing case for Clojure 1.10 syntax errors (#3506)
Loading a buffer sometimes fails silently, since `cider-handle-compilation-errors` currently does not properly parse all syntax errors.
The pattern matches:
> Syntax error compiling at
> Syntax error macroexpanding at
but needs to also match:
> Syntax error reading source at
This commit fixes this by adding the missing string to the regex.
0 commit comments