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 Aug 18, 2017
1 parent 6977cf2 commit d54d734
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 @@ -59,7 +59,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 d54d734

Please sign in to comment.