hey, why is there a -key-event and -key-press both? I can't see key-event used anywhere.
For whatever reason, most event systems distinguish between the two. Key events are more or less "raw" input from the keyboard while key-press will give you characters that have been interpreted by the OS which is usually what you want.
As an example, if you hold "Shift" and press "B", you'll get a "B" key-press and several key-events for both the push and release of every keyboard key used.
thanks, I think I also get a "shift" keypress
seems like a common case that you'd want the key-event-handler to suppress the key-press, since alt+w != w you don't want to react to both
weird I kindo of am getting that behavior but don't see why yet, ignore me
ah no I'm not, getting the w through on my keydown, interesting
it's just passing through the events that it gets. If you want to pass through events differently, you can do that with something like ui/wrap-on.