We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68291d5 commit d301d6bCopy full SHA for d301d6b
src/handlers/quickTools.js
@@ -83,7 +83,12 @@ function setupHistoryNavigation() {
83
// Search input history navigation
84
if ($searchInput.el) {
85
$searchInput.el.addEventListener("keydown", (e) => {
86
- if (e.key === "ArrowUp") {
+ if ((e.ctrlKey || e.metaKey) && e.key.toLowerCase() === "f") {
87
+ e.preventDefault();
88
+ const { editor, activeFile } = editorManager;
89
+ editor.focus();
90
+ toggleSearch();
91
+ } else if (e.key === "ArrowUp") {
92
e.preventDefault();
93
const newValue = searchHistory.navigateSearchUp($searchInput.el.value);
94
$searchInput.el.value = newValue;
0 commit comments