Skip to content

Commit 2e09622

Browse files
mmahmoudiancafkafk
authored andcommitted
fix: duplicates in shell completions
1 parent defe8c9 commit 2e09622

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

completions/fish/eza.fish

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ complete -c eza -s G -l grid -d "Display entries in a grid"
99
complete -c eza -s x -l across -d "Sort the grid across, rather than downwards"
1010
complete -c eza -s R -l recurse -d "Recurse into directories"
1111
complete -c eza -s T -l tree -d "Recurse into directories as a tree"
12-
complete -c eza -s X -l dereference -d "Dereference symbolic links when displaying information"
12+
complete -c eza -s X -l dereference -d "Dereference symbolic links when displaying file information"
1313
complete -c eza -s F -l classify -d "Display type indicator by file names"
1414
complete -c eza -l color \
1515
-l colour -d "When to use terminal colours" -x -a "
@@ -91,7 +91,6 @@ complete -c eza -s t -l time -d "Which timestamp field to list" -x -a "
9191
accessed\t'Display accessed time'
9292
created\t'Display created time'
9393
"
94-
complete -c eza -s X -l dereference -d "dereference symlinks for file information"
9594
complete -c eza -s m -l modified -d "Use the modified timestamp field"
9695
complete -c eza -s n -l numeric -d "List numeric user and group IDs."
9796
complete -c eza -l changed -d "Use the changed timestamp field"

completions/nush/eza.nu

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export extern "eza" [
77
--across(-x) # Sort the grid across, rather than downwards
88
--recurse(-R) # Recurse into directories
99
--tree(-T) # Recurse into directories as a tree
10-
--dereference(-X) # Dereference symbolic links when displaying information
10+
--dereference(-X) # Dereference symbolic links when displaying file information
1111
--classify(-F) # Display type indicator by file names
1212
--color # When to use terminal colours
1313
--colour # When to use terminal colours
@@ -37,7 +37,6 @@ export extern "eza" [
3737
--inode(-i) # List each file's inode number
3838
--blocksize(-S) # List each file's size of allocated file system blocks
3939
--time(-t) -d # Which timestamp field to list
40-
--dereference(-X) # dereference symlinks for file information
4140
--modified(-m) # Use the modified timestamp field
4241
--numeric(-n) # List numeric user and group IDs.
4342
--changed # Use the changed timestamp field

completions/zsh/_eza

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ __eza() {
1818
{-x,--across}"[Sort the grid across, rather than downwards]" \
1919
{-R,--recurse}"[Recurse into directories]" \
2020
{-T,--tree}"[Recurse into directories as a tree]" \
21-
{-X,--dereference}"[Dereference symbolic links when displaying information]" \
21+
{-X,--dereference}"[Dereference symbolic links when displaying file information]" \
2222
{-F,--classify}"[Display type indicator by file names]:(when):(always auto automatic never)" \
2323
--colo{,u}r="[When to use terminal colours]:(when):(always auto automatic never)" \
2424
--colo{,u}r-scale"[highlight levels of 'field' distinctly]:(fields):(all age size)" \
@@ -58,7 +58,6 @@ __eza() {
5858
--no-time"[Suppress the time field]" \
5959
{-u,--accessed}"[Use the accessed timestamp field]" \
6060
{-U,--created}"[Use the created timestamp field]" \
61-
{-X,--dereference}"[dereference symlinks for file information]" \
6261
--git"[List each file's Git status, if tracked]" \
6362
--no-git"[Suppress Git status]" \
6463
--git-repos"[List each git-repos status and branch name]" \

0 commit comments

Comments
 (0)