From 9c24b5c9589486a4a1b3acfcad59e4245ca37f43 Mon Sep 17 00:00:00 2001 From: ori Date: Wed, 1 Jul 2026 14:54:47 +0300 Subject: [PATCH] Release v0.15.2: fix visual mode e motion Bump to v0.15.2. Single bug fix: e in visual mode now correctly moves to end of word instead of behaving like w (#52). --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dc048b..1ae4244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). Version ## [Unreleased] +## [0.15.2] — 2026-07-01 + ### Fixed - `e` in visual mode now moves to end of word instead of behaving like `w` ([#52](https://github.com/oribarilan/vimcode/issues/52)). @@ -299,7 +301,8 @@ First release. Modal editing for the OpenCode prompt. > `g` fires immediately as buffer-home instead of waiting for `gg`. The `yy` line tracker drifts on clicks and arrow keys. Visual mode and text objects aren't feasible without cursor position access. -[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.15.1...HEAD +[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.15.2...HEAD +[0.15.2]: https://github.com/oribarilan/vimcode/compare/v0.15.1...v0.15.2 [0.15.1]: https://github.com/oribarilan/vimcode/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/oribarilan/vimcode/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/oribarilan/vimcode/compare/v0.13.0...v0.14.0 diff --git a/README.md b/README.md index 684ff18..9ca7c68 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add to your `tui.json` (or `.opencode/tui.json`): ```json { - "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.15.1"] + "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.15.2"] } ``` @@ -40,7 +40,7 @@ To pass options, use the tuple form in `tui.json`: ```json { - "plugin": [["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.15.1", { "updateCheck": false }]] + "plugin": [["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.15.2", { "updateCheck": false }]] } ``` diff --git a/package.json b/package.json index 46e62f5..e3bb28c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vimcode", - "version": "0.15.1", + "version": "0.15.2", "description": "Vim keybindings for the OpenCode prompt", "author": "Ori Bar-ilan", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index 35bcc77..8c5ddb2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,5 +1,5 @@ // Keep in sync with package.json on each release. -export const VERSION = "0.15.1"; +export const VERSION = "0.15.2"; // GitHub API returns fresh content immediately; raw.githubusercontent.com // is CDN-cached for up to 5 minutes which delays update detection.