From 1a4957d48553342ce1292749a5ad72febec8f7f6 Mon Sep 17 00:00:00 2001 From: ori Date: Mon, 31 Aug 2026 17:39:17 +0300 Subject: [PATCH] Release v0.16.0: :w and :write send the prompt Bump to v0.16.0. :w and :write now send the prompt instead of autocompleting to :wq and quitting OpenCode. :wq still quits. --- 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 cee1a82..feeba26 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.16.0] — 2026-08-31 + ### Added - `:w` and `:write` now send the prompt instead of autocompleting to `:wq` and quitting OpenCode. Sessions auto-persist, so the natural mapping for vim users' reflexive "save" is to submit the current prompt. `:wq` still quits. @@ -309,7 +311,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.3...HEAD +[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.16.0...HEAD +[0.16.0]: https://github.com/oribarilan/vimcode/compare/v0.15.3...v0.16.0 [0.15.3]: https://github.com/oribarilan/vimcode/compare/v0.15.2...v0.15.3 [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 diff --git a/README.md b/README.md index 104c6af..64341c2 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.3"] + "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.16.0"] } ``` @@ -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.3", { "updateCheck": false }]] + "plugin": [["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.16.0", { "updateCheck": false }]] } ``` diff --git a/package.json b/package.json index 72a2bac..978faf2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vimcode", - "version": "0.15.3", + "version": "0.16.0", "description": "Vim keybindings for the OpenCode prompt", "author": "Ori Bar-ilan", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index 2057bc1..acbfbba 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.3"; +export const VERSION = "0.16.0"; // GitHub API returns fresh content immediately; raw.githubusercontent.com // is CDN-cached for up to 5 minutes which delays update detection.