# bindkey **Repository Path**: w-xuefeng/bindkey ## Basic Information - **Project Name**: bindkey - **Description**: ⌨ Bind keyboard shortcut - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Bindkey > 绑定键盘快捷键 ### Install ```shell npm i @w-xuefeng/bindkey ``` ### Usage ```ts import bindkey from '@w-xuefeng/bindkey'; // 添加快捷键 bindkey.add('Ctrl+C', () => { // TODO }); // 移除快捷键 bindkey.remove('Ctrl+C'); ```