mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-01-23 10:28:45 +08:00
Simplify omf cd
code
This also namespace the function to `omf.packages`.
This commit is contained in:
parent
394ca55d1b
commit
7025525ef1
|
@ -1,25 +0,0 @@
|
||||||
# SYNOPSIS
|
|
||||||
# Change the current working directory to plugin / theme home directory.
|
|
||||||
#
|
|
||||||
# OPTIONS
|
|
||||||
# <name> Name of the package or theme.
|
|
||||||
|
|
||||||
function omf.cd -a name -d "Change the current working directory to plugin / theme home directory."
|
|
||||||
if test -z $name
|
|
||||||
pushd $OMF_PATH
|
|
||||||
return 0
|
|
||||||
end
|
|
||||||
|
|
||||||
if test -e $OMF_CONFIG/pkg/$name
|
|
||||||
pushd $OMF_CONFIG/pkg/$name
|
|
||||||
else if test -e $OMF_CONFIG/themes/$name
|
|
||||||
pushd $OMF_CONFIG/themes/$name
|
|
||||||
else if test -e $OMF_PATH/pkg/$name
|
|
||||||
pushd $OMF_PATH/pkg/$name
|
|
||||||
else if test -e $OMF_PATH/themes/$name
|
|
||||||
pushd $OMF_PATH/themes/$name
|
|
||||||
else
|
|
||||||
echo (omf::err)"$name is not a valid package/theme name"(omf::off) 1^&2
|
|
||||||
return $OMF_INVALID_ARG
|
|
||||||
end
|
|
||||||
end
|
|
22
pkg/omf/cli/omf.packages.cd.fish
Normal file
22
pkg/omf/cli/omf.packages.cd.fish
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# SYNOPSIS
|
||||||
|
# Change the current working directory to plugin / theme home directory.
|
||||||
|
#
|
||||||
|
# OPTIONS
|
||||||
|
# <name> Name of the package or theme.
|
||||||
|
|
||||||
|
function omf.packages.cd -a name -d "Change the current working directory to plugin / theme home directory."
|
||||||
|
if test -z "$name"
|
||||||
|
pushd $OMF_PATH
|
||||||
|
return 0
|
||||||
|
end
|
||||||
|
|
||||||
|
for path in {$OMF_CONFIG,$OMF_PATH}/{pkg,themes}/$name
|
||||||
|
if test -e "$path"
|
||||||
|
pushd $path
|
||||||
|
return 0
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
echo (omf::err)"$name is not a valid package/theme name"(omf::off) 1^&2
|
||||||
|
return $OMF_INVALID_ARG
|
||||||
|
end
|
|
@ -55,9 +55,9 @@ function omf -d "Oh My Fish"
|
||||||
case "c" "cd"
|
case "c" "cd"
|
||||||
switch (count $argv)
|
switch (count $argv)
|
||||||
case 1
|
case 1
|
||||||
omf.cd
|
omf.packages.cd
|
||||||
case 2
|
case 2
|
||||||
omf.cd $argv[2]
|
omf.packages.cd $argv[2]
|
||||||
case "*"
|
case "*"
|
||||||
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
||||||
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" <name>" 1^&2
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" <name>" 1^&2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user