Skip to content

Commit

Permalink
Fix quoting in cdr-based recent dirs
Browse files Browse the repository at this point in the history
Fixes #315.
  • Loading branch information
marlonrichert committed Jul 30, 2021
1 parent 1db1177 commit 0082d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/.autocomplete.recent-dirs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ zmodload -Fa zsh/parameter p:commands p:dirstack p:functions
ancestor=$ancestor:h
done
_autocomplete.sort_by_length ${(D)reply[@]:#$PWD(|/[^/]#)}
reply=( $~reply[@] )
reply=( ${(Q)~reply[@]} )

(( $#reply[@] ))
}
Expand Down

0 comments on commit 0082d89

Please sign in to comment.