We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e2f8d7 commit 16db5f8Copy full SHA for 16db5f8
src/components/OmniBar.tsx
@@ -528,7 +528,9 @@ const OmniBar = () => {
528
useEffect(() => {
529
// manually handle keybindings since kbar has some kind of bug around re-opening
530
return tinykeys(window, {
531
- '$mod+k': () => {
+ '$mod+k': (event: Event) => {
532
+ event.preventDefault()
533
+
534
navigate('/search')
535
},
536
'$mod+/': () => {
0 commit comments