Make keyboard shortcuts consistent (#20326)

* Make keyboard shortcuts consistent

* Cleanup

* Refactor prevent default to not require separate input

* Fix

* Implement escape for reviews

* Implement escape for explore

* Send content ref to get page changes for free
This commit is contained in:
Nicolas Mowen
2025-10-02 07:21:37 -06:00
committed by GitHub
parent 85ace6a6be
commit 2030809a6d
18 changed files with 231 additions and 122 deletions
+4 -2
View File
@@ -56,14 +56,16 @@ function Live() {
useKeyboardListener(["f"], (key, modifiers) => {
if (!modifiers.down) {
return;
return true;
}
switch (key) {
case "f":
toggleFullscreen();
break;
return true;
}
return false;
});
// document title