Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
6.2.2
->6.7.1
6.1.1
->6.3.1
6.6.0
->6.10.3
6.2.0
->6.5.1
6.2.0
->6.4.1
6.9.4
->6.35.0
Release Notes
codemirror/commands (@codemirror/commands)
v6.7.1
Compare Source
Bug fixes
Change
toggleBlockCommentByLine
to not affect lines with the selection end right at their start.v6.7.0
Compare Source
Bug fixes
Bind Shift-Enter to the same command as Enter in the default keymap, so that it doesn't do nothing when on an EditContext-supporting browser.
New features
Add commands for by-string-index cursor motion that ignores text direction.
v6.6.2
Compare Source
Bug fixes
Fix an issue causing
selectParentSyntax
to not select syntax that is a direct child of the top node.Make
selectParentSyntax
return false when it doesn't change the selection.v6.6.1
Compare Source
Bug fixes
Fix a bug in the undo history that would cause it to incorrectly track inverted effects when adding multiple edits to a single history event.
v6.6.0
Compare Source
New features
The new
toggleTabFocusMode
andtemporarilySetTabFocusMode
commands provide control over the view's tab-focus mode.The default keymap now binds Ctrl-m (Shift-Alt-m on macOS) to
toggleTabFocusMode
.v6.5.0
Compare Source
New features
The
insertNewlineKeepIndent
command inserts a newline along with the same indentation as the line before.v6.4.0
Compare Source
Bug fixes
Fix an issue where
deleteLine
sometimes leaves the cursor on the wrong line.New features
The new
deleteCharBackwardStrict
command just deletes a character, without further smart behavior around indentation.v6.3.3
Compare Source
Bug fixes
Fix an issue causing cursor motion commands to not dispatch a transaction when the change only affects cursor associativity.
v6.3.2
Compare Source
Bug fixes
Fix a regression that caused
deleteCharBackward
to sometimes delete a large chunk of text.v6.3.1
Compare Source
Bug fixes
When undoing, store the selection after the undone change with the redo event, so that redoing restores it.
deleteCharBackward
will no longer delete variant selector characters as separate characters.v6.3.0
Compare Source
Bug fixes
Make it possible for
selectParentSyntax
to jump out of or into a syntax tree overlay.Make Cmd-Backspace and Cmd-Delete on macOS delete to the next line wrap point, not the start/end of the line.
New features
The new
deleteLineBoundaryForward
anddeleteLineBoundaryBackward
commands delete to the start/end of the line or the next line wrapping point.v6.2.5
Compare Source
Bug fixes
Make
insertNewlineAndIndent
properly count indentation for tabs when copying over the previous line's indentation.The various sub-word motion commands will now use
Intl.Segmenter
, when available, to stop at CJK language word boundaries.Fix a bug in
insertNewlineAndIndent
that would delete text between brackets if it had no corresponding AST node.v6.2.4
Compare Source
Bug fixes
The by-subword motion commands now properly treat dashes, underscores, and similar as subword separators.
v6.2.3
Compare Source
Bug fixes
Block commenting the selection no longer includes indentation on the first line.
codemirror/lang-markdown (@codemirror/lang-markdown)
v6.3.1
Compare Source
Bug fixes
Fix an issue where
insertNewlineContinueMarkup
didn't work with the cursor directly after an HTML tag.v6.3.0
Compare Source
New features
The new
htmlTagLanguage
option allows client code to configure which language is used to parse HTML tags in the document.v6.2.5
Compare Source
Bug fixes
Disable folding for list nodes (since it will shadow the folding on the first list item).
v6.2.4
Compare Source
Bug fixes
Starting at the third list item,
insertNewlineContinueMarkup
will now keep the tightness of the list, and only require two presses to clear an empty list item.v6.2.3
Compare Source
Bug fixes
Support code folding for GFM tables.
v6.2.2
Compare Source
Bug fixes
Fix a bug in
insertNewlineContinueMarkup
that caused it to put the cursor in the wrong place when the editor's line break was more than one character long.v6.2.1
Compare Source
Bug fixes
Make
insertNewlineContinueMarkup
anddeleteMarkupBackward
use tabs for indentation when appropriate.v6.2.0
Compare Source
New features
The markdown package now installs a completion source that completes HTML tags when in Markdown context.
codemirror/language (@codemirror/language)
v6.10.3
Compare Source
Bug fixes
Fix a TypeScript error when using
HighlightStyle
with theexactOptionalPropertyTypes
typechecking option enabled.Make
delimitedIndent
align to spaces after the opening token.v6.10.2
Compare Source
Bug fixes
Fix an infinite loop that could occur when enabling
bidiIsolates
in documents with both bidirectional text and very long lines.v6.10.1
Compare Source
Bug fixes
Fix an issue where, when a lot of code is visible in the initial editor, the bottom bit of code is shown without highlighting for one frame.
v6.10.0
Compare Source
New features
The new
bidiIsolates
extension can be used to wrap syntactic elements where this is appropriate in an element that isolates their text direction, avoiding weird ordering of neutral characters on direction boundaries.v6.9.3
Compare Source
Bug fixes
Fix an issue in
StreamLanguage
where it ran out of node type ids if you repeatedly redefined a language with the same token table.v6.9.2
Compare Source
Bug fixes
Allow
StreamParser
tokens get multiple highlighting tags.v6.9.1
Compare Source
Bug fixes
Indentation now works a lot better in mixed-language documents that interleave the languages in a complex way.
Code folding is now able to pick the right foldable syntax node when the line end falls in a mixed-parsing language that doesn't match the target node.
v6.9.0
Compare Source
Bug fixes
Make
getIndentation
return null, rather than 0, when there is no syntax tree available.New features
The new
preparePlaceholder
option tocodeFolding
makes it possible to display contextual information in a folded range placeholder widget.v6.8.0
Compare Source
New features
The new
baseIndentFor
method inTreeIndentContext
can be used to find the base indentation for an arbitrary node.v6.7.0
Compare Source
New features
Export
DocInput
class for feeding editor documents to a Lezer parser.codemirror/language-data (@codemirror/language-data)
v6.5.1
Compare Source
Bug fixes
Properly specify the dependency on @codemirror/legacy-modes version 6.4.
v6.5.0
Compare Source
Bug fixes
Use the new full Go language mode for Go code.
New features
Include data for legacy Pug mode.
v6.4.1
Compare Source
Bug fixes
Include .mts and .cts as TypeScript file extensions.
v6.4.0
Compare Source
Bug fixes
Include .kts as an extension for Kotlin.
Use @codemirror/lang-yaml instead of the legacy mode for YAML content.
New features
Add an entry for Liquid templates.
v6.3.1
Compare Source
Bug fixes
Use @codemirror/lang-less for Less files.
v6.3.0
Compare Source
New features
Use the @codemirror/lang-sass package for .sass and .scss files.
v6.2.1
Compare Source
Bug fixes
Associate Gemfile and Rakefile files with Ruby.
codemirror/state (@codemirror/state)
v6.4.1
Compare Source
Bug fixes
Fix an issue that caused widgets at the end of a mark decoration to be rendered in their own separate mark DOM element.
v6.4.0
Compare Source
Bug fixes
When multiple ranges in a single range set overlap, put the smaller ones inside the bigger ones, so that overlapping decorations don't break up each other's elements when coming from the same source.
New features
Selection and selection range
eq
methods now support an optional argument that makes them also compare by cursor associativity.The
RangeSet.join
function can be used to join multiple range sets together.v6.3.3
Compare Source
Bug fixes
Fix an issue where
Text.slice
andText.replace
could return objects with incorrectlength
when the givenfrom
/to
values were out of range for the text.v6.3.2
Compare Source
Bug fixes
Make sure transactions cannot add multiple selections when
allowMultipleSelections
is false.Fix a bug that caused
Text.iterLines
to not return empty lines at the end of the iterated ranges.v6.3.1
Compare Source
Bug fixes
Give the tag property on
FacetReader
the type of the output type parameter to force TypeScript to infer the proper type when converting fromFacet
toFacetReader
.v6.3.0
Compare Source
New features
The new
FacetReader
type provides a way to export a read-only handle to aFacet
.v6.2.1
Compare Source
Bug fixes
Fix an issue that could cause
RangeSet.compare
to miss changes in the set of active ranges around a point range.codemirror/view (@codemirror/view)
v6.35.0
Compare Source
New features
Tooltips can now use the
clip
option to control whether they are hidden when outside the visible editor content.v6.34.3
Compare Source
Bug fixes
Make sure positions covered by a gutter or a panel aren't treated as visible for the purpose of displaying tooltips.
Properly include the tooltip arrow height when checking whether a tooltip fits in its preferred above/below position.
Fix an issue with compositions on Chrome inserting their content in the wrong position when another document change came in during composition.
v6.34.2
Compare Source
Bug fixes
Fix the default cursor color for dark themes, which was way too dark.
v6.34.1
Compare Source
Bug fixes
Avoid a stack overflow that could happen when updating a line with a lot of text tokens.
Improve the way enormously long (non-wrapped) lines are displayed by making sure they stay shorter than the maximal pixel size the browser's CSS engine can handle.
v6.34.0
Compare Source
Bug fixes
Fix an issue where the dots past the wrapping point were displayed incorrectly when using
highlightWhitespace
with a wrapped sequence of spaces.Improve performance of documents displaying lots of highlighted spaces by using a CSS background instead of pseudo-element.
New features
placeholder
now allows a function that constructs the placedholder DOM to be passed in, and usescloneNode
when a raw element is passed in, to prevent adding the same element to multiple editors.v6.33.0
Compare Source
Bug fixes
Make it easier to move the pointer over a hover tooltip with an arrow by not closing the tooltip when the pointer is moving over the gap for the arrow.
New features
The new
EditorView.clipboardInputFilter
andclipboardOutputFilter
facets allow you to register filter functions that change text taken from or sent to the clipboard.v6.32.0
Compare Source
Bug fixes
Fix a bug where the editor could draw way too big a viewport when not managing its own scrollbar.
New features
The new
gutterWidgetClass
facet makes it possible to add a class to gutter elements next to widgets.v6.31.0
Compare Source
Bug fixes
Avoid the editor's geometry measurements becoming incorrect when fonts finish loading by scheduling a measure on
document.fonts.ready
.Avoid an issue where Chrome would incorrectly scroll the window when deleting lines in the editor.
Fix an issue where in some layouts editor content would be drawn on top of panel elements.
Fix an issue where
coordsAtPos
would return null when querying a position in a block widget.New features
The new
lineNumberWidgetMarker
facet makes it possible to insert markers into the line number gutter for widgets.v6.30.0
Compare Source
Bug fixes
Make spell check corrections work again on
EditContext
-enabled Chrome versions.New features
The value returned by
hoverTooltip
now has anactive
property providing the state field used to store the open tooltips.v6.29.1
Compare Source
Bug fixes
Fix a crash on old Safari browsers that don't support
MediaQueryList.addEventListener
.Fix an issue where
EditorView.viewportLineBlocks
(and thus other things like the gutter) might be out of date after some kinds of decoration changes.v6.29.0
Compare Source
Bug fixes
Fix an issue that caused typing into an editor marked read-only to cause document changes when using
EditContext
.Associate a cursor created by clicking above the end of the text on a wrap point with the line before it.
New features
The package now exports the type of hover tooltip sources as
HoverTooltipSource
.v6.28.6
Compare Source
Bug fixes
Fix an issue where the editor got confused about the position of inserted text when using Chrome's
EditContext
and canceling transactions for typed text.v6.28.5
Compare Source
Bug fixes
Fix a bug that broke drag scrolling along one axis when the innermost scrollable element around the editor was only scrollable along the other axis.
Work around a memory leak in Chrome's EditContext implementation.
v6.28.4
Compare Source
Bug fixes
Fix a bug where EditContext-based editing could corrupt the document in some situations.
v6.28.3
Compare Source
Bug fixes
Fix an issue causing the IME interface to appear in the wrong spot on Chrome Windows.
v6.28.2
Compare Source
Bug fixes
Only use
EditContext
on Chrome versions that support passing it an inverted selection range.Fix an issue that prevented non-inclusive block widgets from having their
updateDOM
method called when changed.Re-enable
EditContext
use on Chrome 126 and up.v6.28.1
Compare Source
Bug fixes
Disable
EditContext
by default again, to work around a regression where Chrome's implementation doesn't support inverted selections.Make sure
EditorView.editable
is respected whenEditContext
is used.v6.28.0
Compare Source
Bug fixes
Fix an issue where long lines broken up by block widgets were sometimes only partially rendered.
New features
The editor will now, when available (which is only on Chrome for the foreseeable future) use the
EditContext
API to capture text input.v6.27.0
Compare Source
New features
The new
setTabFocusMode
method can be used to control whether the editor disables key bindings for Tab and Shift-Tab.v6.26.4
Compare Source
Bug fixes
Fix an issue where commands with an optional second argument would get the keyboard event in that argument when called from a keymap.
Fix an issue that could cause the cursor to be rendered on the wrong side of a zero-length block widget.
Fix an issue where
drawSelection
got confused by block widgets in line-wrapped editors in some situations.Don't hide the native selection in widgets that have focus.
Make sure that clicking an unfocusable editor still remove focus from any other focused elements.
Fix a crash when loading the package in a non-browser environment.
Stop mouse selection when the user types.
v6.26.3
Compare Source
Bug fixes
Fix an issue where dispatching an update to an editor before it measured itself for the first time could cause the scroll position to incorrectly move.
Fix a crash when multiple tooltips with arrows are shown.
v6.26.2
Compare Source
Bug fixes
Improve behavior of
scrollPastEnd
in a scaled editor.When available, use
Selection.getComposedRanges
on Safari to find the selection inside a shadow DOM.Remove the workaround that avoided inappropriate styling on composed text after a decoration again, since it breaks the stock Android virtual keyboard.
v6.26.1
Compare Source
Bug fixes
Fix the editor getting stuck in composition when Safari fails to fire a compositionend event for a dead key composition.
Fix an issue where, with IME systems that kept the cursor at the start of the composed text, the editor misidentified the target node and disrupted composition.
Fix a bug where in a line-wrapped editor, with some content, the initial scroll position would be off from the top of the document.
v6.26.0
Compare Source
Bug fixes
Avoid the editor getting confused when iOS autocorrects on pressing Enter and does the correction and the break insertion in two different events.
Fix the pasting of copied URIs in iOS.
Fix a bug where a scaled editor could keep performing unnecessary updates due to tiny differences in geometry values returned by the browser.
Fix a bug where, on iOS with a physical keyboard, the modifiers for some keys weren't being passed to the keymaps.
Work around the fact that Mobile Safari makes DOM changes before firing a key event when typing ctrl-d on an external keyboard.
Fix an issue where some commands didn't properly scroll the cursor into view on Mobile Safari.
Re-measure the document when print settings are changed on Chrome.
New features
The
EditorView.scrollHandler
facet can be used to override or extend the behavior of the editor when things are scrolled into view.v6.25.1
Compare Source
Bug fixes
Fix accidental non-optional field in layer config objects.
v6.25.0
Compare Source
Bug fixes
Properly recognize Android GBoard enter presses that strip a space at the end of the line as enter.
Fix a bug that caused the gutter to have the wrong height when the editor was scaled after construction.
When starting a composition after a non-inclusive mark decoration, temporarily insert a widget that prevents the composed text from inheriting that mark's styles.
Make sure the selection is repositioned when a transaction changes decorations without changing the document.
New features
View plugins can now provide a
docViewUpdate
method that is called whenever the document view is updated.Layers now take a
updateOnDocUpdate
option that controls whether they are automatically updated when the document view changes.v6.24.1
Compare Source
Bug fixes
Fix a crash that happens when hover tooltips are active during changes, introduced in 6.24.0.
v6.24.0
Compare Source
Bug fixes
Fix an issue that broke context-menu select-all on Chrome when the viewport didn't cover the whole document.
Make sure tooltips are ordered by extension precedence in the DOM.
New features
Hover tooltip sources may now return multiple tooltips.
v6.23.1
Compare Source
Bug fixes
Fix a bug that caused
Tooltip.above
to not take effect for tooltips that were already present when the tooltip plugin is initialized.Automatically reposition tooltips when their size changes.
v6.23.0
Compare Source
Bug fixes
Work around odd iOS Safari behavior when doing select all.
Fix a composition interruption when an widget is inserted next to the cursor.
Fix a crash in bidirectional cursor motion.
Simplify visual motion through bidirectional text, fix several corner cases where it would work badly.
Fix a bug that broke some bidi isolates not on the first line of the document.
New features
EditorView.bidiIsolatedRanges
now supports automatically determining the direction of the range if not provided by the decoration.EditorView.visualLineSide
can be used to find the visual end or start of a line with bidirectional text.The new
EditorView.outerDecorations
facet can be used to provide decorations that should always be at the bottom of the precedence stack.v6.22.3
Compare Source
Bug fixes
Fix a bug that could cause tooltips to be unnecessarily be positioned absolutely.
Make sure that, when an editor creates tooltips immediately on initialization, the editor is attached to the document when their
mount
callback is called.v6.22.2
Compare Source
Bug fixes
Fix an issue in the bidirectional motion that could cause the cursor to get stuck in a loop when a zero-width non-joiner char was placed on a direction boundary.
Fix a bug that corrupts the editor's internal view tree data structure on some types of edits, putting the editor in a broken state.
v6.22.1
Compare Source
Bug fixes
Call widget
destroy
methods when the entire editor is destroyed or reset.Work around an issue on Safari on macOS Sonoma that made the native cursor visible even when
drawSelection
is enabled.Fix an issue where, on some browsers, the screenreader announced text ended up in the printed document.
Fix a bug where a hover tooltip could stick around even though the pointer was no longer on the editor when it was moved out over the tooltip.
Fix an issue where hover tooltips could close when moving the mouse onto them due to mouse position rounding issues.
v6.22.0
Compare Source
Bug fixes
Exceptions raised by update listeners are now routed to the configured exception sink, if any.
Fix an issue where passing large scroll margins to
scrollIntoView
would cause the measure loop to fail to terminate.Widgets that are draggable (and allow drag events through in their
ignoreEvent
implementation) can now use the editor's built-in drag/drop behavior.New features
The new
scrollTo
option toEditorView
allows an initial scroll position to be provided.The new
EditorView.scrollSnapshot
method returns an effect that can be used to reset to a previous scroll position.v6.21.4
Compare Source
Bug fixes
Support the
offset
,getCoords
,overlap
, andresize
properties on hover tooltips, as long as they aren't given conflicting values when there are multiple active hover tooltips.Fix a bug that caused tooltips in the default configuration to be positioned incorrectly on Chrome when the editor was transformed.
v6.21.3
Compare Source
Bug fixes
Fix an issue that caused
coordsForChar
to return the wrong rectangle for characters after a line wrap in Safari.Make the context menu work when clicking below the content in a fixed-height editor.
Tooltips that have been put below/above their target position because there is no room on their default side now stay there on further updates.
v6.21.2
Compare Source
Bug fixes
Fix a regression that broke dragging text from inside the editor.
v6.21.1
Compare Source
Bug fixes
Fix a bug that could corrupt the DOM view for specific changes involving newlines and mark decorations.
v6.21.0
Compare Source
Bug fixes
Fix a bug that could cause zero-length widgets at the start of a line to be left in the view even after they were removed.
New features
RectangleMarker
's dimension properties are now public.v6.20.2
Compare Source
Bug fixes
Fix an issue in the way the DOM selection is being read that could break backspacing of widgets on Android.
Fix a bug where the editor could incorrectly computate its transform scale when it was small.
v6.20.1
Compare Source
Bug fixes
Fix a crash in plugin event handlers after dynamic reconfiguration.
Fix an issue where, on Chrome, tooltips would no longer use fixed positioning.
v6.20.0
Compare Source
Bug fixes
Fix an issue that caused
repositionTooltips
to crash when it was called on an editor without tooltips.Fix an issue that caused the tooltip system to leave empty nodes in the DOM when an editor using the
parent
option totooltips
is destroyed.Fix a bug that regression mouse interaction with the area of a fixed-size editor that isn't covered by the content.
Fix some issues with the way
moveVertically
behaved for positions on line wrap points.Fix a bug that could cause the document DOM to be incorrectly updated on some types of viewport changes.
New features
The new
getDrawSelectionConfig
function returns thedrawSelection
configuration for a given state.v6.19.0
Compare Source
Bug fixes
Make sure the drop cursor is properly cleaned up even when another extension handles the drop event.
Fix a crash related to non-inclusive replacing block decorations.
New features
The new
EditorView.domEventObservers
(and the corresponding option to view plugins) allows you to register functions that are always called for an event, regardless of whether other handlers handled it.v6.18.1
Compare Source
Bug fixes
Fix an issue where the editor duplicated text when the browser moved content into the focused text node on composition.
Make sure
widgetMarker
is called for gutters on lines covered by a block replace decoration.Fix an issue where the cursor could be shown in a position that doesn't allow a cursor when the selection is in a block widget.
v6.18.0
Compare Source
New features
The new
EditorView.scaleX
andscaleY
properties return the CSS-transformed scale of the editor (or 1 when not scaled).The editor now supports being scaled with CSS.
v6.17.1
Compare Source
Bug fixes
Don't close the hover tooltip when the pointer moves over empty space caused by line breaks within the hovered range.
Fix a bug where on Chrome Android, if a virtual keyboard was slow to apply a change, the editor could end up dropping it.
Work around an issue where line-wise copy/cut didn't work in Firefox because the browser wasn't firing those events when nothing was selected.
Fix a crash triggered by the way some Android IME systems update the DOM.
Fix a bug that caused replacing a word by an emoji on Chrome Android to be treated as a backspace press.
v6.17.0
Compare Source
Bug fixes
Fix a bug that broke hover tooltips when hovering over a widget.
New features
The new
EditorView.cspNonce
facet can be used to provide a Content Security Policy nonce for the library's generated CSS.The new
EditorView.bidiIsolatedRanges
can be used to inform the editor about ranges styled as Unicode bidirection isolates, so that it can compute the character order correctly.EditorView.dispatch
now also accepts an array of transactions to be applied together in a single view update.The new
dispatchTransactions
option tonew EditorView
now replaces the old (deprecated but still supported)dispatch
option in a way that allows multiple transactions to be applied in one update.Input handlers are now passed an additional argument that they can use to retrieve the default transaction that would be applied for the insertion.
v6.16.0
Compare Source
Bug fixes
Fix an issue that made the gutter not stick in place when the editor was in a right-to-left context.
New features
The new
EditorView.coordsForChar
method returns the client rectangle for a given character in the editor.v6.15.3
Compare Source
Bug fixes
Fix another crash regression for compositions before line breaks.
v6.15.2
Compare Source
Bug fixes
Fix the check that made sure compositions are dropped when the selection is moved.
v6.15.1
Compare Source
Bug fixes
Fix a regression that could cause the composition content to be drawn incorrectly.
v6.15.0
Compare Source
Bug fixes
Fix dragging a selection from inside the current selection on macOS.
Fix an issue that could cause the scroll position to jump wildly
Don't try to scroll fixed-positioned elements into view by scrolling their parent elements.
Fix a bug that caused the cursor to be hidden when showing a placeholder that consisted of the empty string.
Resolve some issues where composition could incorrectly affect nearby replaced content.
New features
Key bindings can now set a
stopPropagation
field to cause the view to stop the key event propagation when it considers the event handled.v6.14.1
Compare Source
Bug fixes
Fix an issue where scrolling up through line-wrapped text would sometimes cause the scroll position to pop down.
Fix an issue where clicking wouldn't focus the editor on Firefox when it was in an iframe and already the active element of the frame.
Fix a bug that could cause compositions to be disrupted because their surrounding DOM was repurposed for some other piece of content.
Fix a bug where adding content to the editor could inappropriately move the scroll position.
Extend detection of Enter presses on Android to
beforeInput
events with an"insertLineBreak"
type.v6.14.0
Compare Source
Bug fixes
When dragging text inside the editor, look at the state of Ctrl (or Alt on macOS) at the time of the drop, not the start of drag, to determine whether to move or copy the text.
Fix an issue where having a bunch of padding on lines could cause vertical cursor motion and
posAtCoords
to jump over lines.New features
Block widget decorations can now be given an
inlineOrder
option to make them appear in the same ordering as surrounding inline widgets.v6.13.2
Compare Source
Bug fixes
Fix an issue in scroll position stabilization for changes above the visible, where Chrome already does this natively and we ended up compensating twice.
v6.13.1
Compare Source
Bug fixes
Fix a bug where the cursor would in some circumstances be drawn on the wrong side of an inline widget.
Fix an issue where
scrollPastEnd
could cause the scroll position of editors that weren't in view to be changed unnecessarily.v6.13.0
Compare Source
Bug fixes
Forbid widget decoration side values bigger than 10000, to prevent them from breaking range ordering invariants.
Fix a bug where differences between widgets' estimated and actual heights could cause the editor to inappropriately move the scroll position.
Avoid another situation in which composition that inserts line breaks could corrupt the editor DOM.
New features
Inline widgets may now introduce line breaks, if they report this through the
WidgetType.lineBreaks
property.v6.12.0
Compare Source
Bug fixes
Remove an accidentally included
console.log
.New features
EditorViewConfig.dispatch
is now passed the view object as a second argument.v6.11.3
Compare Source
Bug fixes
Make sure pointer selection respects
EditorView.atomicRanges
.Preserve DOM widgets when their decoration type changes but they otherwise stay in the same place.
Fix a bug in
drawSelection
that could lead to invisible or incorrect selections for a blank line below a block widget.v6.11.2
Compare Source
Bug fixes
Fix a bug where the
crosshairCursor
extension could, when non-native key events were fired, trigger disruptive and needless view updates.Fix an Android issue where backspacing at the front of a line with widget decorations could replace those decorations with their text content.
Respect scroll margins when scrolling the target of drag-selection into view.
Validate selection offsets reported by the browser, to work around Safari giving us invalid values in some cases.
v6.11.1
Compare Source
Bug fixes
Don't preserve the DOM around a composition that spans multiple lines.
v6.11.0
Compare Source
New features
Gutters now support a
widgetMarker
option that can be used to add markers next to block widgets.v6.10.1
Compare Source
Bug fixes
Limit cursor height in front of custom placeholder DOM elements.
v6.10.0
Compare Source
Bug fixes
Fix a crash in
drawSelection
when a measured position falls on a position that doesn't have corresponding screen coordinates.Work around unhelpful interaction observer behavior that could cause the editor to not notice it was visible.
Give the cursor next to a line-wrapped placeholder a single-line height.
Make sure drop events below the editable element in a fixed-height editor get handled properly.
New features
Widget decorations can now define custom
coordsAtPos
methods to control the way the editor computes screen positions at or in the widget.v6.9.6
Compare Source
Bug fixes
Fix an issue where, when escape was pressed followed by a key that the editor handled, followed by tab, the tab would still move focus.
Fix an issue where, in some circumstances, the editor would ignore text changes at the end of a composition.
Allow inline widgets to be updated to a different length via
updateDOM
.v6.9.5
Compare Source
Bug fixes
Avoid disrupting the composition in specific cases where Safari invasively changes the DOM structure in the middle of a composition.
Fix a bug that prevented
destroy
being called on hover tooltips.Fix a bug where the editor could take focus when content changes required it to restore the DOM selection.
Fix height layout corruption caused by a division by zero.
Make sure styles targeting the editor's focus status are specific enough to not cause them to apply to editors nested inside another focused editor. This will require themes to adjust their selection background styles to match the new specificity.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.