shell.how icon indicating copy to clipboard operation
shell.how copied to clipboard

v1.1

Open phuctm97 opened this issue 3 years ago • 4 comments

Some of features would be really awesome to have in the next release 🚀:

  • [ ] Parser: Handle single-quoted strings.
  • [ ] Parser: Other improvements to make sure parser's first step always return correct number of tokens.
  • [ ] Parser: Handle advanced syntax of options: grouped options, option using =
  • [ ] Parser: Handle arguments with isOptional, isPersistent, isRepeatable, etc, differently.
  • [ ] Performance: Install Fig's completion spec locally and static render first result → avoid (many) network calls client-side.
  • [ ] SEO: Generate static sitemaps for all commands defined in spec → increase SEO, potentially make this the best place to search & learn shell command 🔥.
  • [ ] Socials: Generate OG image dynamically for command being queried.

phuctm97 avatar Feb 16 '22 03:02 phuctm97

Bumping the Parser: Handle advanced syntax !

Wanted to try classic rm -rf / to look for easter eggs and i found out that -rf option is unknown.

Moreover, the error stops parsing because rm -rf -v only shows the error instead of (at least) describing the -v option.

Sepci0 avatar Feb 17 '22 13:02 Sepci0

same issue as Sepci0 with ls -la --sort=date

caleb15 avatar Mar 23 '22 20:03 caleb15

Bumping the Parser: Handle advanced syntax !

Wanted to try classic rm -rf / to look for easter eggs and i found out that -rf option is unknown.

Moreover, the error stops parsing because rm -rf -v only shows the error instead of (at least) describing the -v option.

@Sepci0 grouped options worked now!

phuctm97 avatar Mar 24 '22 08:03 phuctm97

Can confirm ls -la works now, thanks.

Almenon avatar Mar 24 '22 15:03 Almenon