Browse Source

Change archive-card shortcut to backtick for better ergonomics

Nadav Tasher 6 months ago
parent
commit
35c1057527
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client/lib/keyboard.js

+ 2 - 2
client/lib/keyboard.js

@@ -190,7 +190,7 @@ Mousetrap.bind('space', evt => {
   }
 });
 
-Mousetrap.bind('-', evt => {
+Mousetrap.bind('`', evt => {
   const cardId = getSelectedCardId();
   if (!cardId) {
     return;
@@ -285,7 +285,7 @@ Template.keyboardShortcuts.helpers({
       action: 'shortcut-assign-self',
     },
     {
-      keys: ['-'],
+      keys: ['`'],
       action: 'archive-card',
     },
     {