FStarLang / fstar-mode.el

Emacs support for F*
Apache License 2.0
67 stars 17 forks source link

Not all errors going to *Flycheck errors* #131

Open briangmilnes opened 1 year ago

briangmilnes commented 1 year ago

Try module Bug

let rec diverge (n : int) : int = match n with | 0 -> 0 | _ -> diverge (n + 1)

in a buffer with M-x flycheck-list-errors up. The minbuffer (at the bottom) gets the error but not the Flycheck errors buffer. Using the flycheck error buffer is very nice for the visually impaired, such as myself.