Araq / nimedit

NimEdit is the new upcoming slim IDE/editor for the Nim programming language. Currently it is hardly usable at all! It's been open sourced in the hope it will speed up its development process.
https://nim-lang.org/nimedit/
MIT License
108 stars 12 forks source link

Fixevents #27

Closed lilkeet closed 3 weeks ago

lilkeet commented 3 weeks ago

Currently the event handling is broken. This is caused by pollEvent putting garbage into the event variable that gets passed around throughout the program, as well as the fact that multiple events can happen per frame but only one gets passed around.

I think that nimedit's code base could benefit from some reorganization and separation of event handling logic from drawing logic. But that's an issue for another pr!