diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/dash | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/dash')
-rw-r--r-- | zsh/oh-my-zsh/plugins/dash/README.md | 28 | ||||
-rw-r--r-- | zsh/oh-my-zsh/plugins/dash/dash.plugin.zsh | 84 |
2 files changed, 0 insertions, 112 deletions
diff --git a/zsh/oh-my-zsh/plugins/dash/README.md b/zsh/oh-my-zsh/plugins/dash/README.md deleted file mode 100644 index 0ca3e4e..0000000 --- a/zsh/oh-my-zsh/plugins/dash/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# Dash plugin - -This plugin adds command line functionality for [Dash](https://kapeli.com/dash), -an API Documentation Browser for macOS. This plugin requires Dash to be installed -to work. - -To use it, add `dash` to the plugins array in your zshrc file: - -```zsh -plugins=(... dash) -``` - -## Usage - -- Open and switch to the dash application. -``` -dash -``` - -- Query for something in dash app: `dash query` -``` -dash golang -``` - -- You can optionally provide a keyword: `dash [keyword:]query` -``` -dash python:tuple -``` diff --git a/zsh/oh-my-zsh/plugins/dash/dash.plugin.zsh b/zsh/oh-my-zsh/plugins/dash/dash.plugin.zsh deleted file mode 100644 index f6801a8..0000000 --- a/zsh/oh-my-zsh/plugins/dash/dash.plugin.zsh +++ /dev/null @@ -1,84 +0,0 @@ -# Usage: dash [keyword:]query -dash() { open -a Dash.app dash://"$*" } -compdef _dash dash - -_dash() { - # No sense doing this for anything except the 2nd position and if we haven't - # specified which docset to query against - if [[ $CURRENT -ne 2 || "$words[2]" =~ ":" ]]; then - return - fi - - local -aU docsets - docsets=() - - # 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 - # 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 - fi - - # if we fall back to platform, we should do some checking per @kapeli - 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|java|qt|cocos2d) ]]; then - if [[ "$docset" =~ "docsetName = ([^;]*);" ]]; then - name="${match[1]//[\":]}" - case "$keyword" in - python) - case "$name" in - "Python 2") keyword="python2" ;; - "Python 3") keyword="python3" ;; - esac ;; - java) - case "$name" in - "Java SE7") keyword="java7" ;; - "Java SE6") keyword="java6" ;; - "Java SE8") keyword="java8" ;; - esac ;; - qt) - case "$name" in - "Qt 5") keyword="qt5" ;; - "Qt 4"|Qt) keyword="qt4" ;; - esac ;; - cocos2d) - case "$name" in - Cocos3D) keyword="cocos3d" ;; - esac ;; - esac - fi - fi - fi - - # Bail once we have a match - break - done - - # If we have a keyword, add it to the list! - if [[ -n "$keyword" ]]; then - docsets+=($keyword) - fi - done - - # special thanks to [arx] on #zsh for getting me sorted on this piece - compadd -qS: -- "$docsets[@]" -} |