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
Enter: pressing Enter with the caret at the bottom of a fixed-height (scrollable) editor left the new line clipped below the visible area β the view only caught up once you started typing. Three stacked causes: after splitting a paragraph the scroll targeted the left (already visible) half instead of the block that keeps the caret; inView treated a line clipped by the container's bottom edge as visible; and Chrome's scroll anchoring shifted the scroll position during the split. The editor now keeps the scroll stable across the split and follows the caret, scrolling the minimal distance (new line aligned to the bottom edge instead of jumping to the top). Fixes #1300.