// single keysMousetrap.bind('4',function() { highlight(2); });Mousetrap.bind('x',function() { highlight(3); },'keyup');// combinationsMousetrap.bind('command+shift+k',function(e) {highlight([6,7,8,9]);returnfalse;});Mousetrap.bind(['command+k','ctrl+k'],function(e) {highlight([11,12,13,14]);returnfalse;});// gmail style sequencesMousetrap.bind('g i',function() { highlight(17); });Mousetrap.bind('* a',function() { highlight(18); });// konami code!Mousetrap.bind('up up down down left right left right b a enter',function() {highlight([21,22,23]);});