We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Video:
Steps to reproduce:
100vh
basicSetup
dasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsadd
Safari Version 17.1 (18616.2.9.11.9, 18616)
https://codemirror.net/try/?c=aW1wb3J0IHtiYXNpY1NldHVwLCBFZGl0b3JWaWV3fSBmcm9tICJjb2RlbWlycm9yIgppbXBvcnQge2phdmFzY3JpcHR9IGZyb20gIkBjb2RlbWlycm9yL2xhbmctamF2YXNjcmlwdCIKCm5ldyBFZGl0b3JWaWV3KHsKICBkb2M6ICJjb25zb2xlLmxvZygnaGVsbG8nKVxuIiwKICBleHRlbnNpb25zOiBbamF2YXNjcmlwdCgpXSwKICBwYXJlbnQ6IGRvY3VtZW50LmJvZHkKfSkK
The text was updated successfully, but these errors were encountered:
I created a workaround for the time being which involves inputting and deleting text at the beginning via a custom view plugin.
function safariCopyPasteHackExtension(): Extension { const viewPlugin = ViewPlugin.define((view) => { return { update: (viewUpdate) => { console.debug(viewUpdate); for (const transaction of viewUpdate.transactions) { if (transaction.isUserEvent("input.paste")) { setTimeout(() => { const addSpaceAtBeginning = { from: 0, insert: " " }; const removeSpaceAtBeginning = { from: 0, to: 1 }; view.dispatch({ changes: addSpaceAtBeginning }); view.dispatch({ changes: removeSpaceAtBeginning }); }, 500); } } }, }; }); return viewPlugin; }
Sorry, something went wrong.
I am not managing to reproduce this. Could you link a /try example that sets everything up properly for this to occur? This is what I tried.
No branches or pull requests
Describe the issue
Video:
Screen.Recording.2023-11-08.at.1.49.53.PM.mov
Steps to reproduce:
100vh
to auto)basicSetup
extension (for some reason if this is added, the issue doesn't occur)dasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsaddasdsadd
used in the example)Browser and platform
Safari Version 17.1 (18616.2.9.11.9, 18616)
Reproduction link
https://codemirror.net/try/?c=aW1wb3J0IHtiYXNpY1NldHVwLCBFZGl0b3JWaWV3fSBmcm9tICJjb2RlbWlycm9yIgppbXBvcnQge2phdmFzY3JpcHR9IGZyb20gIkBjb2RlbWlycm9yL2xhbmctamF2YXNjcmlwdCIKCm5ldyBFZGl0b3JWaWV3KHsKICBkb2M6ICJjb25zb2xlLmxvZygnaGVsbG8nKVxuIiwKICBleHRlbnNpb25zOiBbamF2YXNjcmlwdCgpXSwKICBwYXJlbnQ6IGRvY3VtZW50LmJvZHkKfSkK
The text was updated successfully, but these errors were encountered: