Skip to content

Commit

Permalink
Default command lists non-hidden files in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
janlazo committed Jul 9, 2017
1 parent 940214a commit 0546118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func init() {
} else if os.Getenv("TERM") == "cygwin" {
defaultCommand = `sh -c "command find -L . -mindepth 1 -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-"`
} else {
defaultCommand = `dir /s/b`
defaultCommand = `dir /s/b/a:-d-h`
}
}

Expand Down

0 comments on commit 0546118

Please sign in to comment.