This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Description
When I add the following code to my app, everything works great:
hotkeys.add({
combo: ['s', 'mod+f'],
description: 'Search',
callback: function(e) {
$('input.search-text').focus();
if (e.preventDefault) {
e.preventDefault();
}
}
});
Both keyboard shortcuts work. But only one of them (the first one in the list) appears when I enter the Shift+? page. (tried changing the order and always the first one appears and the others are ignored):
