summaryrefslogtreecommitdiff
path: root/plugins/wd/wd.plugin.zsh
blob: ca2ca7c65c127e0b5f9fe5cf880f25f4b9745a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/zsh

# WARP DIRECTORY
# ==============
# Jump to custom directories in terminal
# because `cd` takes too long...
#
# @github.com/mfaerevaag/wd

# Handle $0 according to the standard:
# https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
0="${${(M)0:#/*}:-$PWD/$0}"

eval "wd() { source '${0:A:h}/wd.sh' }"