Browse Source

Change move-to-archive keyboard shortcut to '-'

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

+ 2 - 2
client/lib/keyboard.js

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