From b5274b6e68c813e1594681429d51a413cdc8fe4b Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 5 Jul 2026 17:27:41 +0200 Subject: [PATCH] docs: authorize file delete in v0.5 scope Spike 14 relies on file deletion, which the roadmap did not list. Add it explicitly, flagging that a Tracked-file removal must reach the next Publish's staged set (git rm / add -A, not plain git add .). --- docs/roadmap.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/roadmap.md b/docs/roadmap.md index 7420acc..2a4d914 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -54,6 +54,9 @@ Out of scope: Vim, palette, multiple files, branches, conflict handling. - [ ] Open, switch, close buffers (keep ≤ 3 in memory) - [ ] `:e` and palette share the same recent-files list - [ ] `:enew` creates a new file — prompts for scope (tracked vs local) +- [ ] Delete a file — removes it from the SD card; for a Tracked file the + removal reaches the next `Ctrl-G` Publish's staged set (`git rm` / `add -A` + semantics, not plain `git add .`); a Local file is just unlinked - [ ] `Ctrl-G` is disabled / hidden when the current buffer is local-scope - [ ] The side panel briefly shows file count on `Ctrl-G` when the publish bundles more than one dirty Tracked file (e.g. `"publishing 3 files: abc1234"`),