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 431c2c7 commit 7c18e8fCopy full SHA for 7c18e8f
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