Ver Fonte

fix(completions): fix missing line breaks in _eza

Before this change the shell would report a parsing error, which was due
to missing line breaks after the newly introduced symlinks flags. This
commit fixes that issue.
Martin Matyášek há 1 ano atrás
pai
commit
cdeae92ea0
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      completions/zsh/_eza

+ 2 - 2
completions/zsh/_eza

@@ -33,8 +33,8 @@ __eza() {
         {-A,--almost-all}"[Equivalent to --all; included for compatibility with \'ls -A\']" \
         {-d,--list-dirs}"[List directories like regular files]" \
         {-D,--only-dirs}"[List only directories]" \
-        --no-symlinks"[Do not show symbolic links]"
-        --show-symlinks"[Explictly show symbolic links: for use with '--only-dirs'| '--only-files']"
+        --no-symlinks"[Do not show symbolic links]" \
+        --show-symlinks"[Explictly show symbolic links: for use with '--only-dirs'| '--only-files']" \
         {-f,--only-files}"[List only files]" \
         {-L,--level}"+[Limit the depth of recursion]" \
         {-w,--width}"+[Limits column output of grid, 0 implies auto-width]" \