shortcuts.js 166 B

1234567
  1. keyboard$.subscribe(function(key) {
  2. if (key.mode === "global" && key.type === "x") {
  3. /* Add custom keyboard handler here */
  4. key.claim()
  5. }
  6. })