Closed
Description
I have a small demo using the following event loop
event :: State -> Event -> EventM (Next State)
event st e = do
liftIO $ print e
continue st
and the following draw function
draw :: State -> [Widget]
draw st = [str "Hello World!"]
There are several cases like Ctrl+,
, Ctrl+.
, and Ctrl+/
that do not fire an event. Additionally there is at least one case of sending the wrong event. For example you would expect Ctrl+m
to read...
EvKey (KChar 'm') [MCtrl]
however it actually reads...
EvKey KEnter []
Metadata
Metadata
Assignees
Labels
No labels