diff options
| author | ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com> | 2024-05-21 20:48:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-21 20:48:54 +0200 |
| commit | f6b3fc84d192274f245a7322c3994767c5e68691 (patch) | |
| tree | 04c3a062f46f5fdbe0cd049475d01dad98e2261b /plugins/wd/_wd.sh | |
| parent | 04b66b230857fb9bc28af5e7590b09ff79f888fa (diff) | |
| download | zsh-f6b3fc84d192274f245a7322c3994767c5e68691.tar.gz zsh-f6b3fc84d192274f245a7322c3994767c5e68691.tar.bz2 zsh-f6b3fc84d192274f245a7322c3994767c5e68691.zip | |
feat(wd): update to version v0.7.0 (#12436)
Co-authored-by: ohmyzsh[bot] <54982679+ohmyzsh[bot]@users.noreply.github.com>
Diffstat (limited to 'plugins/wd/_wd.sh')
| -rw-r--r-- | plugins/wd/_wd.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/wd/_wd.sh b/plugins/wd/_wd.sh index 52ecb12e6..46b032f78 100644 --- a/plugins/wd/_wd.sh +++ b/plugins/wd/_wd.sh @@ -31,6 +31,7 @@ function _wd() { commands=( 'add:Adds the current working directory to your warp points' + 'addcd:Adds a directory to your warp points' 'add!:Overwrites existing warp point' 'export:Export warp points as static named directories' 'rm:Removes the given warp point' @@ -63,6 +64,9 @@ function _wd() { add) _message 'Write the name of your warp point' && ret=0 ;; + addcd) + _message 'Write the name of your path' && ret=0 + ;; show) _describe -t points "Warp points" warp_points && ret=0 ;; |
