feat(desktop): Alt+Up / Alt+Down prompt history in the composer#3121
Open
HUQIANTAO wants to merge 1 commit into
Open
feat(desktop): Alt+Up / Alt+Down prompt history in the composer#3121HUQIANTAO wants to merge 1 commit into
HUQIANTAO wants to merge 1 commit into
Conversation
Most terminals and editors have shell-style history recall; the desktop
composer was a plain textarea. Wire ⌥↑ / ⌥↓ to step through the user's
last 200 sent prompts (most-recent first), persisted in localStorage at
reasonix.composer.history.
Behavior matches readline:
- First ⌥↑ stashes the in-progress draft and shows the most recent
prompt; subsequent presses walk further back.
- ⌥↓ walks forward; stepping past the newest entry restores the
stashed draft so the user's typing isn't lost.
- The modifier is Alt (Alt on Linux/Windows, Option on macOS) — plain
ArrowUp/Down still drive the slash / @-file / arg menus, so the two
paths don't fight.
- isComposing guards IME confirmation (pinyin, kana) so an in-progress
composition is never swallowed by a recall.
- submit() resets the cursor and the draft, so the next recall starts
fresh.
- Sending pushes the typed text (post-trim, attachments excluded) to
the head of the list, deduped.
New file lib/composerHistory.ts (pushHistory / snapshot / clearHistory,
capped at 200 entries, defensively copies on read so a caller can't
mutate the cache).
17baa07 to
82fbd7d
Compare
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.
Most terminals and editors have shell-style history recall; the desktop composer was a plain textarea. Wire ⌥↑ / ⌥↓ to step through the user's last 200 sent prompts (most-recent first), persisted in localStorage.
Behavior matches readline:
isComposingguards IME confirmation (pinyin, kana).submit()resets the cursor and the draft.