@codemirror/view
Advanced tools
Changelog
6.8.1 (2023-02-08)
Fix an issue where tooltips that have their height reduced have their height flicker when scrolling or otherwise interacting with the editor.
Changelog
6.8.0 (2023-02-07)
Fix a regression that caused clicking on the scrollbar to move the selection.
Fix an issue where focus or blur event handlers that dispatched editor transactions could corrupt the mouse selection state.
Fix a CSS regression that prevented the drop cursor from being positioned properly.
WidgetType.updateDOM
is now passed the editor view object.
Changelog
6.7.3 (2023-01-12)
Fix a bug in posAtCoords
that could cause incorrect results for positions to the left of a wrapped line.
Changelog
6.7.2 (2023-01-04)
Fix a regression where the cursor didn't restart its blink cycle when moving it with the pointer.
Even without a key
property, measure request objects that are already scheduled will not be scheduled again by requestMeasure
.
Fix an issue where keymaps incorrectly interpreted key events that used Ctrl+Alt modifiers to simulate AltGr on Windows.
Fix a bug where line decorations with a different class
property would be treated as equal.
Fix a bug that caused drawSelection
to not notice when it was reconfigured.
Fix a crash in the gutter extension caused by sharing of mutable arrays.
Fix a regression that caused touch selection on mobile platforms to not work in an uneditable editor.
Fix a bug where DOM events on the boundary between lines could get assigned to the wrong line.
Changelog
6.7.1 (2022-12-12)
Make the editor properly scroll when moving the pointer out of it during drag selection.
Fix a regression where clicking below the content element in an editor with its own height didn't focus the editor.
Changelog
6.7.0 (2022-12-07)
Make the editor notice widget height changes to automatically adjust its height information.
Fix an issue where widget buffers could be incorrectly omitted after empty lines.
Fix an issue in content redrawing that could cause coordsAtPos
to return incorrect results.
The static RectangleMarker.forRange
method exposes the logic used by the editor to draw rectangles covering a selection range.
Layers can now provide a destroy
function to be called when the layer is removed.
The new highlightWhitespace
extension makes spaces and tabs in the editor visible.
The highlightTrailingWhitespace
extension can be used to make trailing whitespace stand out.
Changelog
6.6.0 (2022-11-24)
The layer
function can now be used to define extensions that draw DOM elements over or below the document text.
Tooltips that are bigger than the available vertical space for them will now have their height set so that they don't stick out of the window. The new resize
property on TooltipView
can be used to opt out of this behavior.
Changelog
6.5.1 (2022-11-15)
Fix a bug that caused marked unnecessary splitting of mark decoration DOM elements in some cases.
Changelog
6.5.0 (2022-11-14)
Fix an issue where key bindings were activated for the wrong key in some situations with non-US keyboards.
A tooltip's positioned
callback is now passed the available space for tooltips.
Changelog
6.4.2 (2022-11-10)
Typing into a read-only editor no longer moves the cursor.
Fix an issue where hover tooltips were closed when the mouse was moved over them if they had a custom parent element.
Fix an issue where the editor could end up displaying incorrect height measurements (typically after initializing).