master
Commits on Oct 12, 2021
-
-
Refactor: extract some methods out of
runand reordermain.rsNow, the top method is `main`, then comes `run`, then the methods used in `run` follow. Generally, a method is always declared somewhere after its first use. This way, you can read the file from top to bottom with a decreasing level of abstraction (you start with very high-level processes like setting the current dir and logic for which ls command to use only comes furher down).
-
-
Refactor:
merge_exit_codesnow takes an `impl IntoIterator<Item = E……xitCode>` This way, callers don't need to collect into a slice / vec.
-
-
Remove an unnecessary reference. (#864)
This was caught by Code Quality github action with the message: > this expression borrows a reference (`&walk::DirEntry`) that is immediately dereferenced by the compiler
Commits on Oct 8, 2021
-
Bump libc from 0.2.101 to 0.2.103
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.101 to 0.2.103. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](rust-lang/libc@0.2.101...0.2.103) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-
Bump anyhow from 1.0.43 to 1.0.44
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.43 to 1.0.44. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.43...1.0.44) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Commits on Oct 7, 2021
-
Merge pull request #857 from exploide/short-help-completion
Added missing help messages to various options
Commits on Oct 6, 2021
Commits on Oct 3, 2021
-
added missing help messages to various options
despite they have hidden_short_help set to true, a short help message is still useful for auto-generated completions
Commits on Sep 3, 2021
Commits on Sep 2, 2021
-
Merge pull request #846 from tmccombs/dep-update
Update dependencies
Commits on Sep 1, 2021
-
Merge pull request #817 from will459/add_no_ignore_parent
Add --no-ignore-parent flag
Commits on Aug 31, 2021
Commits on Aug 22, 2021
Commits on Aug 15, 2021
-
-
Add better documentation of vcs-ignore files.
Explicitly list which files are used for gitignore. Fixes #354
Commits on Aug 14, 2021
-
Add -q/--quiet/--has-match flag (#813)
Instead of printing to stdout, the program will return 1 as the exit code if there are no matches and 0 otherwise.
-
-
Commits on Aug 11, 2021
Commits on Aug 10, 2021
-
Add documentation and examples of ** in glob mode
And how it should be used with the `--full-path` option. Fixes #764.
-
Support --list-details on more platforms
Implement `--list-details` by using short options for `ls` to support more platforms (like BusyBox) closes #783