We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a58be2 commit eb54cd8Copy full SHA for eb54cd8
chrome/content/zotero/integration/citationDialog/keyboardHandler.mjs
@@ -102,6 +102,10 @@ export class CitationDialogKeyboardHandler {
102
handled = true;
103
this.doc.dispatchEvent(new CustomEvent("dialog-cancelled"));
104
}
105
+ else if (event.key == "f" && (Zotero.isMac ? event.metaKey : event.ctrlKey)) {
106
+ handled = true;
107
+ this._id("bubble-input").focus();
108
+ }
109
if (handled) {
110
event.preventDefault();
111
event.stopPropagation();
0 commit comments