Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
b45e0f48
Unverified
Commit
b45e0f48
authored
Oct 07, 2019
by
Marc Cornellà
Committed by
GitHub
Oct 07, 2019
Browse files
dash: simplify completion logic
parent
e0bc6469
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/dash/dash.plugin.zsh
View file @
b45e0f48
...
@@ -35,36 +35,30 @@ _dash() {
...
@@ -35,36 +35,30 @@ _dash() {
if
[[
"
$locator
"
==
"platform"
]]
;
then
if
[[
"
$locator
"
==
"platform"
]]
;
then
# Since these are the only special cases right now, let's not do the
# Since these are the only special cases right now, let's not do the
# expensive processing unless we have to
# expensive processing unless we have to
if
[[
"
$keyword
"
==
"python"
||
"
$keyword
"
==
"java"
||
\
if
[[
"
$keyword
"
=
(
python|java|qt|cocos2d
)
]]
;
then
"
$keyword
"
==
"qt"
||
"
$keyword
"
==
"cocs2d"
]]
;
then
docsetName
=
`
echo
$doc
|
grep
-Eo
"docsetName = .*?;"
|
sed
-e
"s/docsetName =
\(
.*
\)
;/
\1
/"
-e
"s/[
\"
:]//g"
`
docsetName
=
`
echo
$doc
|
grep
-Eo
"docsetName = .*?;"
|
sed
-e
"s/docsetName =
\(
.*
\)
;/
\1
/"
-e
"s/[
\"
:]//g"
`
if
[[
"
$keyword
"
==
"python"
]]
;
then
case
"
$keyword
"
in
if
[[
"
$docsetName
"
==
"Python 2"
]]
;
then
python
)
keyword
=
"python2"
case
"
$docsetName
"
in
elif
[[
"
$docsetName
"
==
"Python 3"
]]
;
then
"Python 2"
)
keyword
=
"python2"
;;
keyword
=
"python3"
"Python 3"
)
keyword
=
"python3"
;;
fi
esac
;;
elif
[[
"
$keyword
"
==
"java"
]]
;
then
java
)
if
[[
"
$docsetName
"
==
"Java SE7"
]]
;
then
case
"
$docsetName
"
in
keyword
=
"java7"
"Java SE7"
)
keyword
=
"java7"
;;
elif
[[
"
$docsetName
"
==
"Java SE6"
]]
;
then
"Java SE6"
)
keyword
=
"java6"
;;
keyword
=
"java6"
"Java SE8"
)
keyword
=
"java8"
;;
elif
[[
"
$docsetName
"
==
"Java SE8"
]]
;
then
esac
;;
keyword
=
"java8"
qt
)
fi
case
"
$docsetName
"
in
elif
[[
"
$keyword
"
==
"qt"
]]
;
then
"Qt 5"
)
keyword
=
"qt5"
;;
if
[[
"
$docsetName
"
==
"Qt 5"
]]
;
then
"Qt 4"
|
Qt
)
keyword
=
"qt4"
;;
keyword
=
"qt5"
esac
;;
elif
[[
"
$docsetName
"
==
"Qt 4"
]]
;
then
cocos2d
)
keyword
=
"qt4"
case
"
$docsetName
"
in
elif
[[
"
$docsetName
"
==
"Qt"
]]
;
then
Cocos3D
)
keyword
=
"cocos3d"
;;
keyword
=
"qt4"
esac
;;
fi
esac
elif
[[
"
$keyword
"
==
"cocos2d"
]]
;
then
if
[[
"
$docsetName
"
==
"Cocos3D"
]]
;
then
keyword
=
"cocos3d"
fi
fi
fi
fi
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment