0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

lib: follow symlinked plugins in plugin list CLI command

See https://github.com/ohmyzsh/ohmyzsh/issues/9087#issuecomment-712460275
This commit is contained in:
Marc Cornellà 2020-10-20 15:57:11 +02:00
parent 7525b1d533
commit f9f45ca222

View file

@ -132,8 +132,8 @@ EOF
function _omz::plugin::list {
local -a custom_plugins builtin_plugins
custom_plugins=("$ZSH_CUSTOM"/plugins/*(/N:t))
builtin_plugins=("$ZSH"/plugins/*(/N:t))
custom_plugins=("$ZSH_CUSTOM"/plugins/*(-/N:t))
builtin_plugins=("$ZSH"/plugins/*(-/N:t))
# If the command is being piped, print all found line by line
if [[ ! -t 1 ]]; then