Add '1' keyboard shortcut to navigate home from anywhere

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-30 00:26:36 -05:00
parent 40b86ffaf7
commit 58b9c316a6
+4
View File
@@ -1649,6 +1649,10 @@
// Single key shortcuts for navigation (only work without modifiers)
if (!e.metaKey && !e.ctrlKey && !e.altKey) {
switch(e.key) {
case '1':
e.preventDefault();
window.location.href = '/';
break;
case '`':
e.preventDefault();
var toggle = document.getElementById('sidebar-toggle');