This CSS snippet hides keyboard shortcut reminders at the bottom of the Quick switcher unless you hover near the bottom:

It works with Omnisearch, as well as with Quick Switcher++:

[Quick_switcher]_Hide_hotkeys.css (268 Bytes)
.prompt-instructions {
max-height: 0;
opacity: 0;
transition: all 0.2s ease;
}
.prompt-instructions:hover,
.prompt-instructions:hover ~ .prompt-instructions,
.prompt-instructions:has(~ .prompt-instructions:hover) {
max-height: 500px;
opacity: 1;
}