linyimin0812 / keypress-event

Listen to the key press

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Capture the specified shortcut

Usage

import Keypress from 'keypress-event'

Keypress.registerShortcut(['ctrl', 'alt', 'u'], () => {
  console.log('Ctrl+Alt+u trigger')
})
Keypress.start()

When You press the shortcut at the sametime, the callback function will be executed.

About

Listen to the key press

License:MIT License


Languages

Language:TypeScript 100.0%