2020-06-03 09:35:51 -07:00
|
|
|
#!/bin/zsh
|
|
|
|
|
2014-07-15 08:42:30 -07:00
|
|
|
# WARP DIRECTORY
|
|
|
|
# ==============
|
2020-06-03 09:35:51 -07:00
|
|
|
# Jump to custom directories in terminal
|
|
|
|
# because `cd` takes too long...
|
2013-11-15 18:15:17 -07:00
|
|
|
#
|
|
|
|
# @github.com/mfaerevaag/wd
|
|
|
|
|
2021-12-18 13:53:49 -07:00
|
|
|
# Handle $0 according to the standard:
|
2021-12-28 06:16:54 -07:00
|
|
|
# https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
|
2021-12-18 13:53:49 -07:00
|
|
|
0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
|
|
|
|
0="${${(M)0:#/*}:-$PWD/$0}"
|
|
|
|
|
2019-09-02 04:40:39 -07:00
|
|
|
eval "wd() { source '${0:A:h}/wd.sh' }"
|