summaryrefslogtreecommitdiff
path: root/plugins/fastfile/fastfile.plugin.zsh
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2020-05-26 17:59:45 +0200
committerMarc Cornellà <marc.cornella@live.com>2020-05-26 18:05:12 +0200
commit2d6965f85645ea489b0adf8ce6a79dd55036d883 (patch)
tree9cadac649f6f277f80fca843b816cde9c9df138b /plugins/fastfile/fastfile.plugin.zsh
parent68d51bd7d83050589ca602059a6e2fb26c2cec39 (diff)
downloadzsh-2d6965f85645ea489b0adf8ce6a79dd55036d883.tar.gz
zsh-2d6965f85645ea489b0adf8ce6a79dd55036d883.tar.bz2
zsh-2d6965f85645ea489b0adf8ce6a79dd55036d883.zip
Fix load of various plugins: fastfile, keychain, sfffe, stack
Diffstat (limited to 'plugins/fastfile/fastfile.plugin.zsh')
-rw-r--r--plugins/fastfile/fastfile.plugin.zsh4
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 " " "_"`