Skip to content

v1.9.0 — TUI slash-command autocomplete

Choose a tag to compare

@erain erain released this 09 Jun 15:41
· 23 commits to main since this release

Type / and the commands come to you. The coding-agent TUI now has inline autocomplete for slash commands, matching the existing @-file picker.

What's new

  • Typing / opens a filtering command popup.
  • ↑/↓ navigate · Tab completes · Esc closes (keeping what you typed).
  • Enter runs a fully-typed or no-argument command immediately, and completes an argument-taking command to /<name> so you can type the argument (e.g. /model ).
  • Opens only on a bare slash token (closes once you start typing an argument); mutually exclusive with the @-file picker.
  • The command list is now a single source of truth shared by the picker and /help, so they can't drift.

(#318, PR #319)

Verified

go build/vet/test ./... green; new tests cover trigger detection, prefix/alias matching, stable ordering, Tab-complete, Esc-keeps-text, and run-vs-complete Enter behavior.

Full Changelog: v1.8.0...v1.9.0