Explain shell commands using next-generation autocomplete from Fig.
-
Node 14
-
Yarn 1.22+
-
Install requirements
-
Clone the repository
-
Run
yarn
to install dependencies
-
TypeScript
-
Next.js
-
Tailwind CSS
-
Recoil for state management, it works natively with React concurrent mode & has builtin caching, allows lean pattern for querying dynamic data (see hooks/use-spec.ts)
-
React concurrent mode for loading data before rendering components & handling errors
-
Run
yarn start
to start development -
Commit adhering to Angular commit convention, use
yarn commit
or Code conventional commits to commit interactively -
Submit a PR and make sure required status checks pass
-
When a PR is merged or code is pushed to
main
:-
Vercel deploys latest changes to shell.how
-
Github validates and creates a new release if there're relevant changes
-
The parser has 2 steps:
-
Escape and split the string into tokens delimited white space, a quoted string is a single token. Nested quotes are supported, too.
-
Load Fig's autocomplete spec for the command (the first token from step 1). Iterate through the tokens, validate, and annotate the tokens with information from the spec.
interface Token extends SimpleToken, Fig.BaseSuggestion {
indices: [number, number]; // [start, end], end is exclusive
value: string; // a copy of [start, end) from original string
type: "command" | "subcommand" | "option" | "argument";
}