Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/fix-autopairs-and-git-signs.md

This file was deleted.

9 changes: 9 additions & 0 deletions autopairs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @vemjs/plugin-autopairs

## 0.1.2

### Patch Changes

- 7701036: autopairs: typing a closing bracket/quote that's already sitting right after the cursor (typically the one autopairs just inserted) now steps over it instead of leaving a duplicate (`())` → `()`).

git: removed hardcoded "mockup" gutter signs that painted fake green/blue/red add/change/delete marks on every buffer regardless of real git state (`window` is always defined in a browser/webview, so this fired unconditionally on both vem.run and vem-desktop). Real `git diff` sign computation — Node/Bun-only, since browsers and webviews can't shell out — also had a latent bug: it never set the subprocess `cwd`, so it always diffed against the process's own working directory instead of the edited file's, and would have failed the moment a real file path was passed in.
2 changes: 1 addition & 1 deletion autopairs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vemjs/plugin-autopairs",
"version": "0.1.1",
"version": "0.1.2",
"description": "Autopairs plugin for the Vem editor",
"type": "module",
"main": "./dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions git/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @vemjs/plugin-git

## 0.1.3

### Patch Changes

- 7701036: autopairs: typing a closing bracket/quote that's already sitting right after the cursor (typically the one autopairs just inserted) now steps over it instead of leaving a duplicate (`())` → `()`).

git: removed hardcoded "mockup" gutter signs that painted fake green/blue/red add/change/delete marks on every buffer regardless of real git state (`window` is always defined in a browser/webview, so this fired unconditionally on both vem.run and vem-desktop). Real `git diff` sign computation — Node/Bun-only, since browsers and webviews can't shell out — also had a latent bug: it never set the subprocess `cwd`, so it always diffed against the process's own working directory instead of the edited file's, and would have failed the moment a real file path was passed in.

## 0.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion git/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vemjs/plugin-git",
"version": "0.1.2",
"version": "0.1.3",
"description": "Git integration and gutter indicators plugin for the Vem editor",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading