Browse Source

feat: add autocomplete for --follow-symlinks

Ihar Hrachyshka 1 year ago
parent
commit
1ab432d618
3 changed files with 3 additions and 0 deletions
  1. 1 0
      completions/fish/eza.fish
  2. 1 0
      completions/nush/eza.nu
  3. 1 0
      completions/zsh/_eza

+ 1 - 0
completions/fish/eza.fish

@@ -38,6 +38,7 @@ complete -c eza -l icons -d "When to display icons" -x -a "
 "
 complete -c eza -l no-quotes -d "Don't quote file names with spaces"
 complete -c eza -l hyperlink -d "Display entries as hyperlinks"
+complete -c eza -l follow-symlinks -d "Drill down into symbolic links that point to directories"
 complete -c eza -l absolute -d "Display entries with their absolute path" -x -a "
   on\t'Show absolute path for listed entries'
   follow\t'Show absolute path with followed symlinks'

+ 1 - 0
completions/nush/eza.nu

@@ -19,6 +19,7 @@ export extern "eza" [
     --no-quotes                # Don't quote file names with spaces
     --hyperlink                # Display entries as hyperlinks
     --absolute                 # Display entries with their absolute path
+    --follow-symlinks          # Drill down into symbolic links that point to directories
     --group-directories-first  # Sort directories before other files
     --git-ignore               # Ignore files mentioned in '.gitignore'
     --all(-a)                  # Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories

+ 1 - 0
completions/zsh/_eza

@@ -27,6 +27,7 @@ __eza() {
         --no-quotes"[Don't quote filenames with spaces]" \
         --hyperlink"[Display entries as hyperlinks]" \
         --absolute"[Display entries with their absolute path]:(mode):(on follow off)" \
+        --follow-symlinks"[Drill down into symbolic links that point to directories]" \
         --group-directories-first"[Sort directories before other files]" \
         --git-ignore"[Ignore files mentioned in '.gitignore']" \
         {-a,--all}"[Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories]" \