Skip to content

Commit 43335f7

Browse files
authored
Merge pull request #253 from NekoiNemo/fix-all-doc
fix: expand `--all` help
2 parents 9aaebcf + 9a5f6f4 commit 43335f7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

completions/fish/eza.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ complete -c eza -l hyperlink -d "Display entries as hyperlinks"
2525
# Filtering and sorting options
2626
complete -c eza -l group-directories-first -d "Sort directories before other files"
2727
complete -c eza -l git-ignore -d "Ignore files mentioned in '.gitignore'"
28-
complete -c eza -s a -l all -d "Show hidden and 'dot' files"
28+
complete -c eza -s a -l all -d "Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories"
2929
complete -c eza -s d -l list-dirs -d "List directories like regular files"
3030
complete -c eza -s L -l level -d "Limit the depth of recursion" -x -a "1 2 3 4 5 6 7 8 9"
3131
complete -c eza -s w -l width -d "Limits column output of grid, 0 implies auto-width"

completions/zsh/_eza

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ __eza() {
2626
--hyperlink"[Display entries as hyperlinks]" \
2727
--group-directories-first"[Sort directories before other files]" \
2828
--git-ignore"[Ignore files mentioned in '.gitignore']" \
29-
{-a,--all}"[Show hidden and 'dot' files]" \
29+
{-a,--all}"[Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories]" \
3030
{-d,--list-dirs}"[List directories like regular files]" \
3131
{-D,--only-dirs}"[List only directories]" \
3232
{-L,--level}"+[Limit the depth of recursion]" \

src/options/help.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ DISPLAY OPTIONS
2828
-w, --width COLS set screen width in columns
2929
3030
FILTERING AND SORTING OPTIONS
31-
-a, --all show hidden and 'dot' files
31+
-a, --all show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories
3232
-d, --list-dirs list directories as files; don't list their contents
3333
-L, --level DEPTH limit the depth of recursion
3434
-r, --reverse reverse the sort order

xtests/outputs/help.ansitxt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ DISPLAY OPTIONS
1919
--no-icons don't display icons (always overrides --icons)
2020

2121
FILTERING AND SORTING OPTIONS
22-
-a, --all show hidden and 'dot' files
22+
-a, --all show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories
2323
-d, --list-dirs list directories as files; don't list their contents
2424
-L, --level DEPTH limit the depth of recursion
2525
-r, --reverse reverse the sort order

0 commit comments

Comments
 (0)