lsp
lsp copied to clipboard
Help option
Hi, thanks for the nice tool.
Is a lsp --help or something in the pipeline? Where all the possible command-line options are shown?
bump
Yeah, definitely will need to add that. If anyone wants to chip in, please let me know.
It should be pretty straightforward. One thing here is that ls switch style is different from the classic flag library flags. Keys there are always one letter and can come in a string so that ls -ltr dirpath is equivalent to ls -l -t -r dirpath. So I wrote lsp's own flag parser: see arguments.go@parseArguments()