summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/wd/_wd.sh
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/wd/_wd.sh
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/wd/_wd.sh')
-rw-r--r--zsh/oh-my-zsh/plugins/wd/_wd.sh98
1 files changed, 0 insertions, 98 deletions
diff --git a/zsh/oh-my-zsh/plugins/wd/_wd.sh b/zsh/oh-my-zsh/plugins/wd/_wd.sh
deleted file mode 100644
index 8d5cf15..0000000
--- a/zsh/oh-my-zsh/plugins/wd/_wd.sh
+++ /dev/null
@@ -1,98 +0,0 @@
-#compdef wd
-
-zstyle ':completion::complete:wd:*:descriptions' format '%B%d%b'
-zstyle ':completion::complete:wd:*:commands' group-name commands
-zstyle ':completion::complete:wd:*:warp_points' group-name warp_points
-zstyle ':completion::complete:wd::' list-grouped
-
-zmodload zsh/mapfile
-
-function _wd() {
- local WD_CONFIG=${WD_CONFIG:-$HOME/.warprc}
- local ret=1
-
- local -a commands
- local -a warp_points
-
- warp_points=( "${(f)mapfile[$WD_CONFIG]//$HOME/~}" )
-
- typeset -A points
- while read -r line
- do
- arr=(${(s,:,)line})
- name=${arr[1]}
- target_path=${arr[2]}
-
- # replace ~ from path to fix completion (#17)
- target_path=${target_path/#\~/$HOME}
-
- points[$name]=$target_path
- done < $WD_CONFIG
-
- commands=(
- 'add:Adds the current working directory to your warp points'
- 'add!:Overwrites existing warp point'
- 'export:Export warp points as static named directories'
- 'rm:Removes the given warp point'
- 'list:Outputs all stored warp points'
- 'ls:Show files from given warp point'
- 'path:Show path to given warp point'
- 'show:Outputs all warp points that point to the current directory or shows a specific target directory for a point'
- 'help:Show this extremely helpful text'
- 'clean:Remove points warping to nonexistent directories'
- 'clean!:Remove nonexistent directories without confirmation'
- '..:Go back to last directory'
- )
-
- _arguments -C \
- '1: :->first_arg' \
- '2: :->second_arg' && ret=0
-
- local target=$words[2]
-
- case $state in
- first_arg)
- _describe -t warp_points "Warp points" warp_points && ret=0
- _describe -t commands "Commands" commands && ret=0
- ;;
- second_arg)
- case $target in
- add\!|rm)
- _describe -t points "Warp points" warp_points && ret=0
- ;;
- add)
- _message 'Write the name of your warp point' && ret=0
- ;;
- show)
- _describe -t points "Warp points" warp_points && ret=0
- ;;
- ls)
- _describe -t points "Warp points" warp_points && ret=0
- ;;
- path)
- _describe -t points "Warp points" warp_points && ret=0
- ;;
- *)
- if [[ -v points[$target] ]]; then
- # complete sub directories from the warp point
- _path_files -W "(${points[$target]})" -/ && ret=0
- fi
-
- # don't complete anything if warp point is not valid
- ;;
- esac
- ;;
- esac
-
- return $ret
-}
-
-_wd "$@"
-
-# Local Variables:
-# mode: Shell-Script
-# sh-indentation: 2
-# indent-tabs-mode: nil
-# sh-basic-offset: 2
-# End:
-# vim: ft=zsh sw=2 ts=2 et