forked from ohmyzsh/ohmyzsh
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfb86cd
commit 8d08f16
Showing
4 changed files
with
355 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#compdef scd | ||
#description smart change directory | ||
|
||
local curcontext="$curcontext" state line expl ret=1 | ||
typeset -A opt_args | ||
|
||
local -a indexopts myargs | ||
indexopts=( --add -a --unindex ) | ||
|
||
myargs=( | ||
# common options | ||
"(--help -h)"{--help,-h}"[print help and exit]" | ||
|
||
# options for manipulating directory index | ||
- index | ||
"(--recursive -r)"{--recursive,-r}"[use recursive --add or --unindex]" | ||
"($indexopts)"{--add,-a}"[add specified directories to the index]" | ||
"($indexopts)--unindex[remove specified directories from the index]" | ||
"*:directory:{ (( ${words[(I)-a|--add|--unindex]} )) && _path_files -/ }" | ||
|
||
# define new directory alias | ||
- alias | ||
"--alias=[create alias for this or given directory]:directory-alias:()" | ||
'1:directory:{ (( words[(I)--alias*] )) && _path_files -/ }' | ||
|
||
# remove definition of directory alias | ||
- unalias | ||
"--unalias[remove definition of directory alias]" | ||
"*::directory alias:->scd-alias-target" | ||
|
||
# act on the directory change | ||
- scd | ||
"(--all -A)"{--all,-A}"[include less likely and ignored paths]" | ||
"--list[print matching directories and exit]" | ||
"(--verbose -v)"{--verbose,-v}"[show directory ranking and full paths]" | ||
"(--push -p)"{--push,-p}"[change directory with 'pushd']" | ||
"1::directory alias:->scd-alias-target" | ||
"*:patterns:()" | ||
) | ||
|
||
_arguments -S -C $myargs && ret=0 | ||
|
||
|
||
if [[ "$state" == scd-alias-target && -s ~/.scdalias.zsh ]]; then | ||
local -a scdaliases | ||
scdaliases=( ) | ||
eval "$(setopt extendedglob | ||
phome="(#b)(#s)${HOME}(/*)#(#e)" | ||
builtin hash -dr | ||
source ~/.scdalias.zsh && | ||
for k v in ${(kv)nameddirs}; do | ||
scdaliases+=( $k:${v/${~phome}/"~"${match[1]}} ) | ||
done | ||
complete_unalias=${+opt_args[unalias---unalias]} | ||
if (( complete_unalias && ! ${+nameddirs[OLD]} )); then | ||
scdaliases+=( 'OLD:all aliases to non-existent paths' ) | ||
fi | ||
typeset -p scdaliases )" | ||
_describe -t scdaliases scdalias scdaliases | ||
fi |
Oops, something went wrong.