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