Document the base export #6
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?
I tried to convert CodeMirror 6's key handler to just use KeyboardEvent.key (only to workaround #5), and it seemed fine, except that I didn't know what the platform equivalent of
basewas.Except on browsers that have broken support for
.key, which are all IE versions (which uses some non-standard names) along with most browsers on macOS (which report the wrong names when some modifier keys are held). So unfortunately, we're going to continue to need this kludge for the time being.Attached patch documents
baseandshift.Yeah, I knew it was likely problematic on other browsers, but even on Chrome I didn't know what the equivalent to
basewas.Thanks for the notes!