Skip to content

Commit cdeae92

Browse files
matyamacafkafk
authored andcommitted
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.
1 parent c58ddcb commit cdeae92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

completions/zsh/_eza

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ __eza() {
3333
{-A,--almost-all}"[Equivalent to --all; included for compatibility with \'ls -A\']" \
3434
{-d,--list-dirs}"[List directories like regular files]" \
3535
{-D,--only-dirs}"[List only directories]" \
36-
--no-symlinks"[Do not show symbolic links]"
37-
--show-symlinks"[Explictly show symbolic links: for use with '--only-dirs'| '--only-files']"
36+
--no-symlinks"[Do not show symbolic links]" \
37+
--show-symlinks"[Explictly show symbolic links: for use with '--only-dirs'| '--only-files']" \
3838
{-f,--only-files}"[List only files]" \
3939
{-L,--level}"+[Limit the depth of recursion]" \
4040
{-w,--width}"+[Limits column output of grid, 0 implies auto-width]" \

0 commit comments

Comments
 (0)