keycode

Maps web browser keycodes to their corresponding keyboard keys

https://github.com/RyanGlScott/keycode

Version on this page:0.2.2
LTS Haskell 22.13:0.2.2@rev:10
Stackage Nightly 2024-03-14:0.2.2@rev:10
Latest on Hackage:0.2.2@rev:10

See all snapshots keycode appears in

BSD-3-Clause licensed by Ryan Scott
Maintained by Ryan Scott
This version can be pinned in stack with:keycode-0.2.2@sha256:3cf692ddb8ca53cecf2065a4c8016f640ffe76cc18ad7152e705cec6510102b3,1702

Module documentation for 0.2.2

keycode

Hackage Hackage Dependencies Haskell Programming Language BSD3 License Build

Keyboard events in web browsers are often represented as keycodes, which (1) are difficult to remember, and (2) sometimes vary from browser to browser. This package allows one to look up a key press’s keycode and get a plain English description of the key that was pressed, to reduce confusion.

Changes

0.2.2

  • Add isKeyCode function [ryantrinkle]

0.2.1

  • Bugfix: the keycodes for - and = were swapped on Gecko-based browsers (e.g., Firefox)

0.2

  • Add Data, Typeable, Generic, and Lift instances for Key when possible

0.1.1

  • Bugfix involving keycode 74 (should be J, was incorrectly giving K) [roboguy13]

0.1

  • Initial commit