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
In gex there is a lot of passing around of state which gets awkward in the form of overly complicated function signatures and lifetime semantics.
This feels unfortunate as most of these things (the current view, the minibuffer, the status, etc) should only ever have one instance anyway. As gex runs basically single-threaded, I think there would be very little cost to just having global access to these state via a static variable or similar.
The text was updated successfully, but these errors were encountered:
In gex there is a lot of passing around of state which gets awkward in the form of overly complicated function signatures and lifetime semantics.
This feels unfortunate as most of these things (the current view, the minibuffer, the status, etc) should only ever have one instance anyway. As gex runs basically single-threaded, I think there would be very little cost to just having global access to these state via a static variable or similar.
The text was updated successfully, but these errors were encountered: