Change archive-card shortcut to backtick for better ergonomics

This commit is contained in:
Nadav Tasher 2024-11-24 20:55:36 +02:00
parent 3912181857
commit 35c1057527

View file

@ -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',
},
{