It would be nice to have a is-special-key predicate exported by the world library to recognize all the special keys that on-key handlers can receive. That way, one can use a
| is-special-key(k) then: …
without having to explicitly enumerate all of the possibilities (which may change over time). These are all the keys whose strings should never appear literally.
It would be nice to have a
is-special-key
predicate exported by theworld
library to recognize all the special keys thaton-key
handlers can receive. That way, one can use awithout having to explicitly enumerate all of the possibilities (which may change over time). These are all the keys whose strings should never appear literally.