nim-lang / NimLime

The official Nim programming language plugin for Sublime Text
MIT License
132 stars 34 forks source link

`nim check` doesn't work and should be replace by newly introduced `--errorMax:0` flag #137

Closed timotheecour closed 1 year ago

timotheecour commented 5 years ago

see my PR that was recently merged : https://github.com/nim-lang/Nim/pull/9916

on posix: 
nim c --errorMax:0 -o:/dev/null main.nim
on windows:
nim c --errorMax:0 -o:null main.nim # need to double check that