Release v0.12.0: persistent mode indicator#26
Merged
Conversation
Replaces the ephemeral toast with a persistent label next to the prompt. Shows NORMAL, INSERT, VISUAL, and (insert) for one-shot normal. New modeIndicator option: "status" (default), "toast", "none". Old modeToast option still works as fallback.
S-andres0694
pushed a commit
to S-andres0694/vimcode
that referenced
this pull request
Jun 8, 2026
Adds a persistent mode label next to the prompt, replacing the toast that disappeared after a second. Uses SolidJS slots (`session_prompt_right` and `home_prompt_right`) with a reactive signal that updates on every mode change. Color-coded by mode: warning for NORMAL, primary for VISUAL, muted for INSERT, and lowercase `(insert)` for one-shot normal (matching Vim convention). New `modeIndicator` option controls the behavior: - `"status"` (default) — persistent label - `"toast"` — old behavior - `"none"` — disabled The old `modeToast` option still works as a fallback when `modeIndicator` isn't set. Closes oribarilan#3
S-andres0694
pushed a commit
to S-andres0694/vimcode
that referenced
this pull request
Jun 8, 2026
Adds a persistent mode label next to the prompt, replacing the toast that disappeared after a second. Uses SolidJS slots (`session_prompt_right` and `home_prompt_right`) with a reactive signal that updates on every mode change. Color-coded by mode: warning for NORMAL, primary for VISUAL, muted for INSERT, and lowercase `(insert)` for one-shot normal (matching Vim convention). New `modeIndicator` option controls the behavior: - `"status"` (default) — persistent label - `"toast"` — old behavior - `"none"` — disabled The old `modeToast` option still works as a fallback when `modeIndicator` isn't set. Closes oribarilan#3
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.
Adds a persistent mode label next to the prompt, replacing the toast that disappeared after a second. Uses SolidJS slots (
session_prompt_rightandhome_prompt_right) with a reactive signal that updates on every mode change.Color-coded by mode: warning for NORMAL, primary for VISUAL, muted for INSERT, and lowercase
(insert)for one-shot normal (matching Vim convention).New
modeIndicatoroption controls the behavior:"status"(default) — persistent label"toast"— old behavior"none"— disabledThe old
modeToastoption still works as a fallback whenmodeIndicatorisn't set.Closes #3