Skip to content

Commit f5b5428

Browse files
committed
change query input focus shortcut to ctrl /
1 parent f9cf36f commit f5b5428

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Scheme index search consists of control pane on the left, and result list in the
1212

1313
=== Control pane
1414

15-
In the control pane, optionally select values from the filter list, optionally enter search query in the text field, and press either enter or button with magnifying glass to display the results. You can use control + f to quickly focus to the query text field.
15+
In the control pane, optionally select values from the filter list, optionally enter search query in the text field, and press either enter or button with magnifying glass to display the results. You can use control + / to quickly focus to the query text field.
1616

1717
=== Result list
1818

static/js/scmindex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ window.addEventListener('load', () => {
9191
});
9292

9393
window.addEventListener('keydown', e => {
94-
if (e.ctrlKey && e.keyCode == 70) {
94+
if (e.ctrlKey && e.keyCode == 191) {
9595
let el = document.getElementById('query-field');
9696
if (el) {
9797
e.preventDefault();

0 commit comments

Comments
 (0)