ShortcutJSJavaScript 快捷键库
Shortcut.js 可以让你实现键盘快捷键和应用功能之间的绑定。
一些快捷键定义:
| Shortcut | Event Name | 
|---|---|
| j | shortcutNextItem | 
| k | shortcutPrevItem | 
| n | shortcutNewItem | 
| o | shortcutOpenItem | 
| / | shortcutSearchItems | 
| . | shortcutLoadItems | 
使用方法:
document.addEventListener('shortcutNextItem', function() {
  // your code here
});评论
