You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firefox generally seems to have a problem with cursor placement and focus. Autofocus does not work in general with slate on firefox (newest version), and with soft wrap, the cursor placement is wrong, but once I start typing, the cursor jumps to the correct space, very weird...
I use a very ugly hack to get around that by adding an invisible character if the softbreak is the last character in the text, and remove it when if find that softbreak-workaround within my text
const SoftbreakString = '\n\u200c';
editor.normalizeNode = entry => {
const [node, nodePath] = entry;
if (Text.isText(node)) {
if (node.text[node.text.length - 1] === '\n') {
Transforms.insertText(editor, `${node.text}\u200c`, { at: nodePath });
}
// filter u200c softbreaks as soon as they are within the string
if (node.text.substring(1, node.text.length - 1).includes(SoftbreakString)) {
const replaced = node.text.replaceAll(SoftbreakString, '\n');
Transforms.insertText(editor, replaced, { at: nodePath });
}
}
}
Do you want to request a feature or report a bug?
A bug
What's the current behavior?
When pressing Enter, the cursor stays on the same line when a leaf with a mark is just before the cursor.
OS:
Browser Identification:
Live example
What's the expected behavior?
The cursor is expected to be on the newline
The text was updated successfully, but these errors were encountered: