about summary refs log tree commit diff
path: root/Functions/Zftp/zfls
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/Zftp/zfls')
-rw-r--r--Functions/Zftp/zfls13
1 files changed, 13 insertions, 0 deletions
diff --git a/Functions/Zftp/zfls b/Functions/Zftp/zfls
new file mode 100644
index 000000000..e8d3cfb28
--- /dev/null
+++ b/Functions/Zftp/zfls
@@ -0,0 +1,13 @@
+# function zfls {
+
+emulate -L zsh
+
+# directory hack, see zfcd
+if [[ $1 = $HOME || $1 = $HOME/* ]]; then
+  1="~${1#$HOME}"
+fi
+
+zfautocheck -d
+
+zftp ls $*
+# }