Cancel keydown `/` to not append `/` to search box

This commit is contained in:
Dawid Ciężarkiewicz 2020-09-05 23:23:32 -07:00
parent 89c4416412
commit 635a5fe7a8
No known key found for this signature in database
GPG Key ID: E1DD596D71BDC261
1 changed files with 1 additions and 0 deletions

View File

@ -130,6 +130,7 @@ Mousetrap.bind(['ctrl+up', 'k'], function() {
Mousetrap.bind(['/'], function() {
focusAppendToById('query-text');
return false;
});
Mousetrap.bindGlobal(['alt+/', 'alt+f', 'alt+q'], function() {