We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41336a8 commit 7fb4b66Copy full SHA for 7fb4b66
packages/vidstack/src/core/keyboard/controller.ts
@@ -222,6 +222,9 @@ export class MediaKeyboardController extends MediaPlayerController {
222
223
return combinations?.some((combo) => {
224
const modifierKeys = new Set(combo.filter((key) => MODIFIER_KEYS.has(key)));
225
+ if ('<>'.includes(event.key)) {
226
+ modifierKeys.add('Shift');
227
+ }
228
229
// Check whether a modifier key was pressed that's not part of this combination.
230
for (const modKey of MODIFIER_KEYS) {
0 commit comments