[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

add some roadmap

Mohammad Bagher Abiyat (Oct 12, 2024, 1:53 PM +0330) 2819992a ae37e119

+21 -1
+19 -1
README.md
··· 1 - # ahh 1 + # tab 2 + 3 + - [] zsh test in git 4 + 5 + ```zsh 6 + source <(pnpm tsx demo.ts complete zsh) 7 + 8 + vite # rest of the completions 9 + 10 + pnpm tsx demo.ts complete -- --po 11 + ``` 12 + 13 + - [] tests vitest (this should mostly test the completions array, e.g. logs) 14 + - [] powershell completions generation 15 + - [] citty support `@bomsh/tab/citty` 16 + - [] `@bombsh/tab` 17 + 18 + - [] fish 19 + - [] bash
+1
cac.ts
··· 1 + // @bombsh/tab/cac 1 2 import { CAC } from "cac"; 2 3 import * as zsh from "./zsh"; 3 4 import * as bash from "./bash";
+1
demo.ts
··· 106 106 return value; 107 107 } 108 108 109 + // https://github.com/vitejs/vite/blob/main/packages/vite/src/node/cli.ts 109 110 // Global options 110 111 cli 111 112 .option("-c, --config <file>", `[string] use specified config file`)