diff options
Diffstat (limited to 'plugins/fastfile')
-rw-r--r-- | plugins/fastfile/fastfile.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fastfile/fastfile.plugin.zsh b/plugins/fastfile/fastfile.plugin.zsh index a4229e4c2..0d71246fc 100644 --- a/plugins/fastfile/fastfile.plugin.zsh +++ b/plugins/fastfile/fastfile.plugin.zsh @@ -5,7 +5,7 @@ # If they are not set yet, they will be # overwritten with their default values -default fastfile_dir "${HOME}/.fastfile/" +default fastfile_dir "${HOME}/.fastfile" default fastfile_var_prefix "ยง" ########################### @@ -104,7 +104,7 @@ function fastfile_rm() { # Generate the aliases for the shortcuts # function fastfile_sync() { - for f in "${fastfile_dir}"/*; do + for f in "${fastfile_dir}"/*(N); do file=`basename "$f"` # To enable simpler handeling of spaces in file names varkey=`echo "$file" | tr " " "_"` |