chore: release version bump#9
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@vemjs/[email protected]
Patch Changes
b361f5b: Fix two interaction bugs from the 2026-07-16 audit:
WorkspaceLayoutcalls
PanelGroup.resize()instead of writing width/height bare, soopening the Explorer/PluginLab or resizing the window after
:vsp/:spno longer leaves panes at stale sizes overflowing off-screen.
mouse=a semantics): the x→column mapping used
Math.round, sendingright-half clicks one cell to the right; it now floors and clamps at 0.
b361f5b: Fix printable keystrokes being delivered twice to the Vim state machine.
VemEditorEntity's keydown handler already fed every non-composing key tohandleKey()unconditionally, but only calledpreventDefault()for a narrow whitelist (arrows, Home/End, Tab, Backspace, Escape, Space) — letters, digits, punctuation, Enter, and Delete were left unprevented. That let the keystroke also reach the focused a11y shadow<textarea>natively, which mutated its.valueand fired thechangehandler added for IME support, redelivering the same character a second time. In NORMAL mode this meanti/aboth switched to INSERT and inserted the literal character, with rapid/heldacompounding on every press; in INSERT mode, Enter could additionally leak a literal\ninto the buffer instead of a clean line split.preventDefault()now covers every single printable character plusEnter/Delete, so the shadow textarea'schangeevent is reserved for genuine IME composition commits only.