Skip to content

Commit

Permalink
fix help layout
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jul 7, 2024
1 parent 2841b87 commit 1afd615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lsv/options.v
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ fn parse_args(args []string) Options {
recursive := fp.bool('', `R`, false, 'list subdirectories recursively')
recursion_depth := fp.int('depth', ` `, max_int, 'limit depth of recursion')
list_by_lines := fp.bool('', `X`, false, 'list files by lines instead of by columns')
no_wrap := fp.bool('', `Z`, false, 'do not wrap long lines')
one_per_line := fp.bool('', `1`, false, 'list one file per line')

width_in_cols := fp.int('width', ` `, 0, 'set output width to <int>\n\nFiltering and Sorting Options:')
Expand Down Expand Up @@ -117,8 +116,9 @@ fn parse_args(args []string) Options {
time_iso := fp.bool('', `I`, false, 'show time in iso format')
time_compact := fp.bool('', `J`, false, 'show time in compact format')
inode := fp.bool('', `N`, false, 'show inodes')
checksum := fp.string('cs', ` `, '', 'show file checksum\n${flag.space}(md5, sha1, sha224, sha256, sha512, blake2b)\n')
no_wrap := fp.bool('', `Z`, false, 'do not wrap long lines\n')

checksum := fp.string('cs', ` `, '', 'show file checksum\n${flag.space}(md5, sha1, sha224, sha256, sha512, blake2b)')
no_count := fp.bool('no-counts', ` `, false, 'hide file/dir counts')
no_date := fp.bool('no-date', ` `, false, 'hide date (modified)')
no_dim := fp.bool('no-dim', ` `, false, 'hide shading; useful for light backgrounds')
Expand Down

0 comments on commit 1afd615

Please sign in to comment.