fish: fix sourcing of .fish files
Turns out, the quotes were messing things up.
This commit is contained in:
parent
111011b2c2
commit
9a258edc10
|
@ -310,7 +310,7 @@ in
|
||||||
|
|
||||||
# Source initialization code if it exists.
|
# Source initialization code if it exists.
|
||||||
if test -d $plugin_dir"/conf.d"
|
if test -d $plugin_dir"/conf.d"
|
||||||
source $plugin_dir"/conf.d/*.fish"
|
source $plugin_dir/conf.d/*.fish
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -f $plugin_dir"/key_bindings.fish"
|
if test -f $plugin_dir"/key_bindings.fish"
|
||||||
|
|
|
@ -21,7 +21,7 @@ let
|
||||||
|
|
||||||
# Source initialization code if it exists.
|
# Source initialization code if it exists.
|
||||||
if test -d $plugin_dir"/conf.d"
|
if test -d $plugin_dir"/conf.d"
|
||||||
source $plugin_dir"/conf.d/*.fish"
|
source $plugin_dir/conf.d/*.fish
|
||||||
end
|
end
|
||||||
|
|
||||||
if test -f $plugin_dir"/key_bindings.fish"
|
if test -f $plugin_dir"/key_bindings.fish"
|
||||||
|
|
Loading…
Reference in a new issue