mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-18 21:14:11 +01:00
15 lines
208 B
Plaintext
15 lines
208 B
Plaintext
# function zfls {
|
|
|
|
emulate -L zsh
|
|
[[ $curcontext = :zf* ]] || local curcontext=:zfls
|
|
|
|
# directory hack, see zfcd
|
|
if [[ $1 = $HOME || $1 = $HOME/* ]]; then
|
|
1="~${1#$HOME}"
|
|
fi
|
|
|
|
zfautocheck -d
|
|
|
|
zftp ls $*
|
|
# }
|