Load functions before conf.d.

This commit is contained in:
Jorge Bucaran 2016-05-19 20:22:18 +09:00
parent fd282ffa6d
commit e084aa7f7c
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -708,24 +708,6 @@ end
function __fisher_plugin_enable -a path
set -l plugin_name (basename $path)
for file in $path/conf.d/*.{py,awk}
set -l base (basename "$file")
command ln -sf "$file" "$fish_config/conf.d/$base"
end
for file in $path/conf.d/*.fish
set -l base (basename "$file")
set -l target "$fish_config/conf.d/$base"
command ln -sf "$file" "$target"
builtin source "$target" ^ /dev/null
end
for file in $path/{functions/,}*.{py,awk}
set -l base (basename "$file")
command ln -sf "$file" "$fish_config/functions/$base"
end
for file in $path/{functions/*,}*.fish
set -l base (basename "$file")
@ -771,6 +753,24 @@ function __fisher_plugin_enable -a path
end
end
for file in $path/{functions/,}*.{py,awk}
set -l base (basename "$file")
command ln -sf "$file" "$fish_config/functions/$base"
end
for file in $path/conf.d/*.{py,awk}
set -l base (basename "$file")
command ln -sf "$file" "$fish_config/conf.d/$base"
end
for file in $path/conf.d/*.fish
set -l base (basename "$file")
set -l target "$fish_config/conf.d/$base"
command ln -sf "$file" "$target"
builtin source "$target" ^ /dev/null
end
for file in $path/completions/*.fish
set -l base (basename "$file")
set -l target "$fish_config/completions/$base"