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() {
if
[[
"
$locator
"
==
"platform"
]]
;
then
# Since these are the only special cases right now, let's not do the
# expensive processing unless we have to
if
[[
"
$keyword
"
==
"python"
||
"
$keyword
"
==
"java"
||
\
"
$keyword
"
==
"qt"
||
"
$keyword
"
==
"cocs2d"
]]
;
then
if
[[
"
$keyword
"
=
(
python|java|qt|cocos2d
)
]]
;
then
docsetName
=
`
echo
$doc
|
grep
-Eo
"docsetName = .*?;"
|
sed
-e
"s/docsetName =
\(
.*
\)
;/
\1
/"
-e
"s/[
\"
:]//g"
`
if
[[
"
$keyword
"
==
"python"
]]
;
then
if
[[
"
$docsetName
"
==
"Python 2"
]]
;
then
keyword
=
"python2"
elif
[[
"
$docsetName
"
==
"Python 3"
]]
;
then
keyword
=
"python3"
fi
elif
[[
"
$keyword
"
==
"java"
]]
;
then
if
[[
"
$docsetName
"
==
"Java SE7"
]]
;
then
keyword
=
"java7"
elif
[[
"
$docsetName
"
==
"Java SE6"
]]
;
then
keyword
=
"java6"
elif
[[
"
$docsetName
"
==
"Java SE8"
]]
;
then
keyword
=
"java8"
fi
elif
[[
"
$keyword
"
==
"qt"
]]
;
then
if
[[
"
$docsetName
"
==
"Qt 5"
]]
;
then
keyword
=
"qt5"
elif
[[
"
$docsetName
"
==
"Qt 4"
]]
;
then
keyword
=
"qt4"
elif
[[
"
$docsetName
"
==
"Qt"
]]
;
then
keyword
=
"qt4"
fi
elif
[[
"
$keyword
"
==
"cocos2d"
]]
;
then
if
[[
"
$docsetName
"
==
"Cocos3D"
]]
;
then
keyword
=
"cocos3d"
fi
fi
case
"
$keyword
"
in
python
)
case
"
$docsetName
"
in
"Python 2"
)
keyword
=
"python2"
;;
"Python 3"
)
keyword
=
"python3"
;;
esac
;;
java
)
case
"
$docsetName
"
in
"Java SE7"
)
keyword
=
"java7"
;;
"Java SE6"
)
keyword
=
"java6"
;;
"Java SE8"
)
keyword
=
"java8"
;;
esac
;;
qt
)
case
"
$docsetName
"
in
"Qt 5"
)
keyword
=
"qt5"
;;
"Qt 4"
|
Qt
)
keyword
=
"qt4"
;;
esac
;;
cocos2d
)
case
"
$docsetName
"
in
Cocos3D
)
keyword
=
"cocos3d"
;;
esac
;;
esac
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