@w-xuefeng/bindkey
v1.0.3
Published
⌨ Bind keyboard shortcut
Maintainers
Readme
Bindkey
绑定键盘快捷键
Install
npm i @w-xuefeng/bindkeyUsage
import { bindkey, type ShortcutOptions } from '@w-xuefeng/bindkey';
const options: ShortcutOptions = { propagate: false }
// 添加快捷键
bindkey.add('Ctrl+C', () => {
// TODO
}, options);
// 移除快捷键
bindkey.remove('Ctrl+C');