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 f8cc396 commit 408beb9Copy full SHA for 408beb9
1 file changed
app/app.vue
@@ -69,7 +69,8 @@ function handleGlobalKeydown(e: KeyboardEvent) {
69
router.push('/search')
70
}
71
72
- if (isKeyWithoutModifiers(e, '?')) {
+ // For "?" we check the key property directly since it's usually combined with shift
73
+ if (e.key === '?') {
74
e.preventDefault()
75
showKbdHints.value = true
76
0 commit comments