mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
perf(dash): improve dash completion performance
This commit is contained in:
parent
c4699f8ee1
commit
3459768745
1 changed files with 67 additions and 63 deletions
|
@ -5,76 +5,80 @@ compdef _dash dash
|
||||||
_dash() {
|
_dash() {
|
||||||
# No sense doing this for anything except the 2nd position and if we haven't
|
# No sense doing this for anything except the 2nd position and if we haven't
|
||||||
# specified which docset to query against
|
# specified which docset to query against
|
||||||
if [[ $CURRENT -eq 2 && ! "$words[2]" =~ ":" ]]; then
|
if [[ $CURRENT -ne 2 || "$words[2]" =~ ":" ]]; then
|
||||||
local -a _all_docsets
|
return
|
||||||
_all_docsets=()
|
fi
|
||||||
# Use defaults to get the array of docsets from preferences
|
|
||||||
# Have to smash it into one big line so that each docset is an element of
|
|
||||||
# our DOCSETS array
|
|
||||||
DOCSETS=("${(@f)$(defaults read com.kapeli.dashdoc docsets | tr -d '\n' | grep -oE '\{.*?\}')}")
|
|
||||||
|
|
||||||
# remove all newlines since defaults prints so pretty like
|
local -aU docsets
|
||||||
# Now get each docset and output each on their own line
|
docsets=()
|
||||||
for doc in "$DOCSETS[@]"; do
|
|
||||||
# Only output docsets that are actually enabled
|
# Use defaults to get the array of docsets from preferences
|
||||||
if [[ "`echo $doc | grep -Eo \"isEnabled = .*?;\" | sed 's/[^01]//g'`" == "0" ]]; then
|
# Have to smash it into one big line so that each docset is an element of our docsets array
|
||||||
|
# Only output docsets that are actually enabled
|
||||||
|
local -a enabled_docsets
|
||||||
|
enabled_docsets=("${(@f)$(defaults read com.kapeli.dashdoc docsets \
|
||||||
|
| tr -d '\n' | grep -oE '\{.*?\}' | grep -E 'isEnabled = 1;')}")
|
||||||
|
|
||||||
|
local docset name keyword
|
||||||
|
# Now get each docset and output each on their own line
|
||||||
|
for docset in "$enabled_docsets[@]"; do
|
||||||
|
keyword=''
|
||||||
|
# Order of preference as explained to me by @kapeli via email
|
||||||
|
for locator in keyword suggestedKeyword platform; do
|
||||||
|
# Echo the docset, try to find the appropriate keyword
|
||||||
|
# Strip doublequotes and colon from any keyword so that everything has the
|
||||||
|
# same format when output (we'll add the colon in the completion)
|
||||||
|
if [[ "$docset" =~ "$locator = ([^;]*);" ]]; then
|
||||||
|
keyword="${match[1]//[\":]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "$keyword" ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
keyword=''
|
# if we fall back to platform, we should do some checking per @kapeli
|
||||||
|
if [[ "$locator" == "platform" ]]; then
|
||||||
# Order of preference as explained to me by @kapeli via email
|
# Since these are the only special cases right now, let's not do the
|
||||||
KEYWORD_LOCATORS=(keyword suggestedKeyword platform)
|
# expensive processing unless we have to
|
||||||
for locator in "$KEYWORD_LOCATORS[@]"; do
|
if [[ "$keyword" = (python|java|qt|cocos2d) ]]; then
|
||||||
# Echo the docset, try to find the appropriate keyword
|
if [[ "$docset" =~ "docsetName = ([^;]*);" ]]; then
|
||||||
# Strip doublequotes and colon from any keyword so that everything has the
|
name="${match[1]//[\":]}"
|
||||||
# same format when output (we'll add the colon in the completion)
|
case "$keyword" in
|
||||||
keyword=`echo $doc | grep -Eo "$locator = .*?;" | sed -e "s/$locator = \(.*\);/\1/" -e "s/[\":]//g"`
|
python)
|
||||||
if [[ ! -z "$keyword" ]]; then
|
case "$name" in
|
||||||
# if we fall back to platform, we should do some checking per @kapeli
|
"Python 2") keyword="python2" ;;
|
||||||
if [[ "$locator" == "platform" ]]; then
|
"Python 3") keyword="python3" ;;
|
||||||
# Since these are the only special cases right now, let's not do the
|
esac ;;
|
||||||
# expensive processing unless we have to
|
java)
|
||||||
if [[ "$keyword" = (python|java|qt|cocos2d) ]]; then
|
case "$name" in
|
||||||
docsetName=`echo $doc | grep -Eo "docsetName = .*?;" | sed -e "s/docsetName = \(.*\);/\1/" -e "s/[\":]//g"`
|
"Java SE7") keyword="java7" ;;
|
||||||
case "$keyword" in
|
"Java SE6") keyword="java6" ;;
|
||||||
python)
|
"Java SE8") keyword="java8" ;;
|
||||||
case "$docsetName" in
|
esac ;;
|
||||||
"Python 2") keyword="python2" ;;
|
qt)
|
||||||
"Python 3") keyword="python3" ;;
|
case "$name" in
|
||||||
esac ;;
|
"Qt 5") keyword="qt5" ;;
|
||||||
java)
|
"Qt 4"|Qt) keyword="qt4" ;;
|
||||||
case "$docsetName" in
|
esac ;;
|
||||||
"Java SE7") keyword="java7" ;;
|
cocos2d)
|
||||||
"Java SE6") keyword="java6" ;;
|
case "$name" in
|
||||||
"Java SE8") keyword="java8" ;;
|
Cocos3D) keyword="cocos3d" ;;
|
||||||
esac ;;
|
esac ;;
|
||||||
qt)
|
esac
|
||||||
case "$docsetName" in
|
|
||||||
"Qt 5") keyword="qt5" ;;
|
|
||||||
"Qt 4"|Qt) keyword="qt4" ;;
|
|
||||||
esac ;;
|
|
||||||
cocos2d)
|
|
||||||
case "$docsetName" in
|
|
||||||
Cocos3D) keyword="cocos3d" ;;
|
|
||||||
esac ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Bail once we have a match
|
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
done
|
|
||||||
|
|
||||||
# If we have a keyword, add it to the list!
|
|
||||||
if [[ ! -z "$keyword" ]]; then
|
|
||||||
_all_docsets+=($keyword)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Bail once we have a match
|
||||||
|
break
|
||||||
done
|
done
|
||||||
|
|
||||||
# special thanks to [arx] on #zsh for getting me sorted on this piece
|
# If we have a keyword, add it to the list!
|
||||||
compadd -qS: -- "$_all_docsets[@]"
|
if [[ -n "$keyword" ]]; then
|
||||||
return
|
docsets+=($keyword)
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# special thanks to [arx] on #zsh for getting me sorted on this piece
|
||||||
|
compadd -qS: -- "$docsets[@]"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue