With German keyboard layout, the shortcut / for search does not work.
#59043
Replies: 4 comments
-
|
That's actually quite a common case. Personally I experience this particular issue pretty often. Most services that include some sort of user input by keys, are optimized for the US layout. I use the Swiss German and the US layout depending on what I work on. My keyboard though, is ISO US because for me it feels just much more convenient to write code. |
Beta Was this translation helpful? Give feedback.
-
|
Use |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
The root cause is usually that the application is listening for a specific physical key code (often the location of / on a US keyboard) rather than the actual character produced, or it fails to account for the modifier keys (like Shift) required to produce that character on different layouts. US Layout (QWERTY): The / is a primary key (usually next to the Right Shift). Pressing it triggers a specific keyCode (often 191) or event.code ("Slash"). German Layout (QWERTZ): The / character requires holding Shift + 7. The Failure: The code likely listens for the "Slash" key press without modifiers. On a German keyboard, pressing Shift + 7 triggers the "Digit7" code with a Shift modifier. If the app explicitly forbids modifiers for the shortcut (to avoid conflict with ?), it ignores the input. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
On a German keyboard, press Shift+7, which results in the
/character.Nothing happens.
Knowing that on an English keyboard layout, the
/is on a key in the lower right area, press that key.Nothing happens.
Beta Was this translation helpful? Give feedback.
All reactions