Shift-Tab is "Unidentified" #13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Binding
Shift-Tabin prosemirror-keymap results in an unexpected behaviour originally cased by this package. Though theKeyboardEventis clearly recognized as Tab with a shift-modifier (event.keyCode === 9 && event.shiftKey), the key is marked as"Unidentified".Here's the user agent (using prosemirror in https://github.com/tauri-apps/tauri):
Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15However, I can confirm that the Tab gets detected in Firefox & Chrome thought.
Funny, seems that mess of a browser sets
event.keyto"Unidentified"when shift is held for some reason. Attached patch allowskeyNameto ignore thekeyproperty in that case.Thank @marijnh ❤️ much appreciated!