Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,42 @@ Shell autocompletions are largely missing in the JavaScript CLI ecosystem. tab p

Additionally, tab supports autocompletions for `pnpm`, `npm`, `yarn`, and `bun`.

Modern CLI libraries like [Gunshi](https://github.com/kazupon/gunshi) include tab completion natively in their core.
Tab has already been adopted by major tools and CLI frameworks, including:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also Astro 🙂

<table align="center">
<tr>
<td align="center">
<a href="https://www.cloudflare.com/">
<img src="https://github.com/cloudflare.png?size=200" alt="Cloudflare" width="64"><br>
Cloudflare
</a>
</td>
<td align="center">
<a href="https://nuxt.com/">
<img src="https://github.com/nuxt.png?size=200" alt="Nuxt" width="64"><br>
Nuxt
</a>
</td>
<td align="center">
<a href="https://vitest.dev/">
<img src="https://github.com/vitest-dev.png?size=200" alt="Vitest" width="64"><br>
Vitest
</a>
</td>
<td align="center">
<a href="https://github.com/kazupon/gunshi">
<img src="https://raw.githubusercontent.com/kazupon/gunshi/main/assets/logo.png" alt="Gunshi" width="64"><br>
Gunshi
</a>
</td>
<td align="center">
<a href="https://github.com/clercjs/clerc">
<img src="https://raw.githubusercontent.com/clercjs/clerc/main/docs/public/logo.webp" alt="Clerc" width="64"><br>
Clerc
</a>
</td>
</tr>
</table>

As CLI tooling authors, if we can spare our users a second or two by not checking documentation or writing the `-h` flag, we're doing them a huge favor. The unconscious mind loves hitting the [TAB] key and always expects feedback. When nothing happens, it breaks the user's flow - a frustration apparent across the whole JavaScript CLI tooling ecosystem.

Expand Down
Loading